2025-07-11 01:21:22,418 [ 535227 ] INFO : ClickHouse root is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse (runner:53, check_args_and_update_paths) 2025-07-11 01:21:22,419 [ 535227 ] INFO : Cases dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:79, check_args_and_update_paths) 2025-07-11 01:21:22,419 [ 535227 ] INFO : utils dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/utils (runner:90, check_args_and_update_paths) 2025-07-11 01:21:22,419 [ 535227 ] INFO : base_configs_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/programs/server, binary: /home/ubuntu/_work/_temp/test/build/clickhouse, cases_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:92, check_args_and_update_paths) clickhouse_integration_tests_volume Running pytest container as: 'docker run --rm --name clickhouse_integration_tests_0ab37j --privileged --dns-search='.' --memory=30709026816 --security-opt seccomp=unconfined --cap-add=SYS_PTRACE --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=5ccda723c1fc -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=d862517635bf -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e CLICKHOUSE_USE_OLD_ANALYZER=1 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS="--dist=loadfile -n 10 -rfEps --run-id=1 --color=no --durations=0 --report-log=parallel3_1.jsonl --report-log-exclude-logs-on-passed-tests test_storage_s3_queue/test_4.py::test_registry test_storage_s3_queue/test_4.py::test_replicated -vvv " altinityinfra/integration-tests-runner:ad96270260ff '. Start tests ============================= test session starts ============================== platform linux -- Python 3.10.12, pytest-7.4.4, pluggy-1.5.0 -- /usr/bin/python3 cachedir: .pytest_cache Test order randomisation NOT enabled. Enable with --random-order or --random-order-bucket= rootdir: /ClickHouse/tests/integration configfile: pytest.ini plugins: timeout-2.3.1, repeat-0.9.3, order-1.0.0, reportlog-0.4.0, xdist-3.5.0, random-order-1.1.1 timeout: 900.0s timeout method: signal timeout func_only: False created: 10/10 workers 10 workers [2 items] scheduling tests via LoadFileScheduling test_storage_s3_queue/test_4.py::test_registry [gw1] [ 50%] FAILED test_storage_s3_queue/test_4.py::test_registry test_storage_s3_queue/test_4.py::test_replicated [gw1] [100%] FAILED test_storage_s3_queue/test_4.py::test_replicated =================================== FAILURES =================================== ________________________________ test_registry _________________________________ [gw1] linux -- Python 3.10.12 /usr/bin/python3 started_cluster = def test_registry(started_cluster): node1 = started_cluster.instances["node1"] node2 = started_cluster.instances["node2"] table_name = f"test_registry_{uuid.uuid4().hex[:8]}" db_name = f"db_{table_name}" mv_name = f"{table_name}_mv" dst_table_name = f"{table_name}_dst" keeper_path = f"/clickhouse/test_{table_name}" files_path = f"{table_name}_data" files_to_generate = 1000 node1.query(f"DROP DATABASE IF EXISTS {db_name}") node2.query(f"DROP DATABASE IF EXISTS {db_name}") node1.query( f"CREATE DATABASE {db_name} ENGINE=Replicated('/clickhouse/databases/replicateddb2', 'shard1', 'node1')" ) node2.query( f"CREATE DATABASE {db_name} ENGINE=Replicated('/clickhouse/databases/replicateddb2', 'shard1', 'node2')" ) create_table( started_cluster, node1, table_name, "ordered", files_path, additional_settings={"keeper_path": keeper_path, "buckets": 3}, database_name=db_name, ) zk = started_cluster.get_kazoo_client("zoo1") registry, stat = zk.get(f"{keeper_path}/registry/") uuid1 = node1.query( f"SELECT uuid FROM system.tables WHERE database = '{db_name}' and table = '{table_name}'" ).strip() assert uuid1 in str(registry) expected = [f"0\\nnode1\\n{uuid1}\\n", f"0\\nnode2\\n{uuid1}\\n"] for elem in expected: assert elem in str(registry) total_values = generate_random_files( started_cluster, files_path, files_to_generate, start_ind=0, row_num=1 ) create_mv(node1, f"{db_name}.{table_name}", f"{db_name}.{dst_table_name}", mv_name = f"{db_name}.{mv_name}") def get_count(): return int( node1.query( f"SELECT count() FROM clusterAllReplicas(cluster, {db_name}.{dst_table_name})" ) ) expected_rows = files_to_generate for _ in range(100): if expected_rows == get_count(): break time.sleep(1) assert expected_rows == get_count() table_name_2 = f"test_registry_{uuid.uuid4().hex[:8]}_2" create_table( started_cluster, node1, table_name_2, "ordered", files_path, additional_settings={"keeper_path": keeper_path, "buckets": 3}, database_name=db_name, ) registry, stat = zk.get(f"{keeper_path}/registry/") uuid2 = node1.query( f"SELECT uuid FROM system.tables WHERE database = '{db_name}' and table = '{table_name_2}'" ).strip() assert uuid1 in str(registry) assert uuid2 in str(registry) expected = [ f"0\\nnode1\\n{uuid1}\\n", f"0\\nnode2\\n{uuid1}\\n", f"0\\nnode1\\n{uuid2}\\n", f"0\\nnode2\\n{uuid2}\\n", ] for elem in expected: assert elem in str(registry) node1.restart_clickhouse() node2.restart_clickhouse() registry, stat = zk.get(f"{keeper_path}/registry/") assert uuid1 in str(registry) assert uuid2 in str(registry) > node1.query(f"DROP TABLE {db_name}.{table_name_2} SYNC") test_storage_s3_queue/test_4.py:598: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ helpers/cluster.py:3571: in query return self.client.query( helpers/client.py:39: in wrap return func(self, *args, **kwargs) helpers/client.py:79: in query ).get_answer() _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = def get_answer(self): self.process.wait(timeout=DEFAULT_QUERY_TIMEOUT) self.stdout_file.seek(0) self.stderr_file.seek(0) stdout = self.stdout_file.read().decode("utf-8", errors="replace") stderr = self.stderr_file.read().decode("utf-8", errors="replace") if ( self.timer is not None and not self.process_finished_before_timeout and not self.ignore_error ): logging.debug(f"Timed out. Last stdout:{stdout}, stderr:{stderr}") raise QueryTimeoutExceedException("Client timed out!") if ( self.process.returncode != 0 or self.remove_trash_from_stderr(stderr) ) and not self.ignore_error: > raise QueryRuntimeException( "Client failed! Return code: {}, stderr: {}".format( self.process.returncode, stderr ), self.process.returncode, stderr, ) E helpers.client.QueryRuntimeException: Client failed! Return code: 210, stderr: Code: 210. DB::NetException: Connection reset by peer, while reading from socket (peer: 172.16.1.20:9000, local: 172.16.1.1:56118): (172.16.1.20:9000, local address: 172.16.1.1:56118). (NETWORK_ERROR) helpers/client.py:248: QueryRuntimeException ---------------------------- Captured stdout setup ----------------------------- Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml ------------------------------ Captured log setup ------------------------------ 2025-07-11 01:21:29 [ 573 ] DEBUG : Command:[docker ps | wc -l] (cluster.py:121, run_and_check) 2025-07-11 01:21:29 [ 573 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2025-07-11 01:21:29 [ 573 ] DEBUG : No running containers (conftest.py:95, cleanup_environment) 2025-07-11 01:21:29 [ 573 ] DEBUG : Pruning Docker networks (conftest.py:97, cleanup_environment) 2025-07-11 01:21:29 [ 573 ] DEBUG : Command:[docker network prune --force] (cluster.py:121, run_and_check) 2025-07-11 01:21:29 [ 573 ] DEBUG : Command:[sysctl net.ipv4.ip_local_port_range='55000 65535'] (cluster.py:121, run_and_check) 2025-07-11 01:21:29 [ 573 ] DEBUG : Stdout:net.ipv4.ip_local_port_range = 55000 65535 (cluster.py:145, run_and_check) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV DOCKER_KERBEROS_KDC_TAG 9391ecdee8d7 (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV CLICKHOUSE_TESTS_SERVER_BIN_PATH /clickhouse (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV MSAN_OPTIONS abort_on_error=1 poison_in_dtor=1 (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV JAVA_TOOL_OPTIONS -Djdk.attach.allowAttachSelf=true (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV TSAN_OPTIONS halt_on_error=1 abort_on_error=1 history_size=7 memory_limit_mb=46080 second_deadlock_stack=1 (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV HOSTNAME c92fa165c778 (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV SHLVL 0 (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV HOME /root (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV OLDPWD / (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV DOCKER_HELPER_TAG 5dc43a6382f0 (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV PYTHONUNBUFFERED 1 (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV DOCKER_PYTHON_BOTTLE_TAG d862517635bf (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV UBSAN_OPTIONS print_stacktrace=1 (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV PYTEST_ADDOPTS --dist=loadfile -n 10 -rfEps --run-id=1 --color=no --durations=0 --report-log=parallel3_1.jsonl --report-log-exclude-logs-on-passed-tests test_storage_s3_queue/test_4.py::test_registry test_storage_s3_queue/test_4.py::test_replicated -vvv (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV COMPOSE_HTTP_TIMEOUT 600 (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV DOCKER_MYSQL_PHP_CLIENT_TAG 88be89c1e3b6 (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV DOCKER_DOTNET_CLIENT_TAG 11de0b29a15d (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV CLICKHOUSE_TESTS_CLIENT_BIN_PATH /clickhouse (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV DOCKER_MYSQL_JS_CLIENT_TAG 41ba7c2ec2a1 (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV CLICKHOUSE_USE_OLD_ANALYZER 1 (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV PATH /spark-3.3.2-bin-hadoop3/bin:/opt/gdb/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV DOCKER_KERBERIZED_HADOOP_TAG latest (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV DOCKER_CHANNEL stable (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV DOCKER_CLIENT_TIMEOUT 300 (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV DOCKER_POSTGRESQL_JAVA_CLIENT_TAG a4eff5c7f4d6 (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV DOCKER_NGINX_DAV_TAG b55ac9cd7519 (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV DOCKER_MYSQL_GOLANG_CLIENT_TAG 9bec2a638e6e (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV PWD /ClickHouse/tests/integration (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV DOCKER_MYSQL_JAVA_CLIENT_TAG 766bff31cfe4 (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV CLICKHOUSE_TESTS_BASE_CONFIG_DIR /clickhouse-config (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV TZ Etc/UTC (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV JAVA_PATH /usr/lib/jvm/java-11-openjdk-amd64/bin/java (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV DOCKER_BASE_TAG 5ccda723c1fc (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV SPARK_HOME /spark-3.3.2-bin-hadoop3 (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV LC_CTYPE C.UTF-8 (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV INTEGRATION_TESTS_RUN_ID 1 (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV WORKER_FREE_PORTS 30050 30051 30052 30053 30054 30055 30056 30057 30058 30059 30060 30061 30062 30063 30064 30065 30066 30067 30068 30069 30070 30071 30072 30073 30074 30075 30076 30077 30078 30079 30080 30081 30082 30083 30084 30085 30086 30087 30088 30089 30090 30091 30092 30093 30094 30095 30096 30097 30098 30099 (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV PYTEST_XDIST_TESTRUNUID 607e8e6953a942d48bdf90c1c577241d (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV PYTEST_XDIST_WORKER gw1 (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV PYTEST_XDIST_WORKER_COUNT 10 (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : ENV PYTEST_CURRENT_TEST test_storage_s3_queue/test_4.py::test_registry (setup) (cluster.py:419, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : CLUSTER INIT base_config_dir:/clickhouse-config (cluster.py:719, __init__) 2025-07-11 01:21:29 [ 573 ] DEBUG : clickhouse_start_command: clickhouse server --config-file=/etc/clickhouse-server/{main_config_file} --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log (cluster.py:1656, add_instance) 2025-07-11 01:21:29 [ 573 ] DEBUG : Setup Keeper (cluster.py:1021, setup_keeper_cmd) 2025-07-11 01:21:29 [ 573 ] DEBUG : Cluster name:4 project_name:rootteststorages3queue4-gw1. Added instance name:instance tag:5ccda723c1fc base_cmd:['docker', 'compose', '--env-file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/.env', '--project-name', 'rootteststorages3queue4-gw1', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_azurite.yml'] docker_compose_yml_dir:/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/ (cluster.py:1942, add_instance) 2025-07-11 01:21:29 [ 573 ] DEBUG : clickhouse_start_command: clickhouse server --config-file=/etc/clickhouse-server/{main_config_file} --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log (cluster.py:1656, add_instance) 2025-07-11 01:21:29 [ 573 ] DEBUG : Cluster name:4 project_name:rootteststorages3queue4-gw1. Added instance name:instance2 tag:5ccda723c1fc base_cmd:['docker', 'compose', '--env-file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/.env', '--project-name', 'rootteststorages3queue4-gw1', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_azurite.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2/docker-compose.yml'] docker_compose_yml_dir:/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/ (cluster.py:1942, add_instance) 2025-07-11 01:21:29 [ 573 ] DEBUG : clickhouse_start_command: clickhouse server --config-file=/etc/clickhouse-server/{main_config_file} --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log (cluster.py:1656, add_instance) 2025-07-11 01:21:29 [ 573 ] DEBUG : Cluster name:4 project_name:rootteststorages3queue4-gw1. Added instance name:old_instance tag:23.12 base_cmd:['docker', 'compose', '--env-file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/.env', '--project-name', 'rootteststorages3queue4-gw1', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_azurite.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/old_instance/docker-compose.yml'] docker_compose_yml_dir:/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/ (cluster.py:1942, add_instance) 2025-07-11 01:21:29 [ 573 ] DEBUG : clickhouse_start_command: clickhouse server --config-file=/etc/clickhouse-server/{main_config_file} --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log (cluster.py:1656, add_instance) 2025-07-11 01:21:29 [ 573 ] DEBUG : Cluster name:4 project_name:rootteststorages3queue4-gw1. Added instance name:node1 tag:5ccda723c1fc base_cmd:['docker', 'compose', '--env-file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/.env', '--project-name', 'rootteststorages3queue4-gw1', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_azurite.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/old_instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node1/docker-compose.yml'] docker_compose_yml_dir:/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/ (cluster.py:1942, add_instance) 2025-07-11 01:21:29 [ 573 ] DEBUG : clickhouse_start_command: clickhouse server --config-file=/etc/clickhouse-server/{main_config_file} --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log (cluster.py:1656, add_instance) 2025-07-11 01:21:29 [ 573 ] DEBUG : Cluster name:4 project_name:rootteststorages3queue4-gw1. Added instance name:node2 tag:5ccda723c1fc base_cmd:['docker', 'compose', '--env-file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/.env', '--project-name', 'rootteststorages3queue4-gw1', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_azurite.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/old_instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node1/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node2/docker-compose.yml'] docker_compose_yml_dir:/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/ (cluster.py:1942, add_instance) 2025-07-11 01:21:29 [ 573 ] DEBUG : clickhouse_start_command: clickhouse server --config-file=/etc/clickhouse-server/{main_config_file} --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log (cluster.py:1656, add_instance) 2025-07-11 01:21:29 [ 573 ] DEBUG : Cluster name:4 project_name:rootteststorages3queue4-gw1. Added instance name:instance_too_many_parts tag:5ccda723c1fc base_cmd:['docker', 'compose', '--env-file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/.env', '--project-name', 'rootteststorages3queue4-gw1', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_azurite.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/old_instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node1/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node2/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_too_many_parts/docker-compose.yml'] docker_compose_yml_dir:/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/ (cluster.py:1942, add_instance) 2025-07-11 01:21:29 [ 573 ] DEBUG : clickhouse_start_command: clickhouse server --config-file=/etc/clickhouse-server/{main_config_file} --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log (cluster.py:1656, add_instance) 2025-07-11 01:21:29 [ 573 ] DEBUG : Cluster name:4 project_name:rootteststorages3queue4-gw1. Added instance name:instance_24.5 tag:24.5 base_cmd:['docker', 'compose', '--env-file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/.env', '--project-name', 'rootteststorages3queue4-gw1', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_azurite.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/old_instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node1/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node2/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_too_many_parts/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_24.5/docker-compose.yml'] docker_compose_yml_dir:/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/ (cluster.py:1942, add_instance) 2025-07-11 01:21:29 [ 573 ] DEBUG : clickhouse_start_command: clickhouse server --config-file=/etc/clickhouse-server/{main_config_file} --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log (cluster.py:1656, add_instance) 2025-07-11 01:21:29 [ 573 ] DEBUG : Cluster name:4 project_name:rootteststorages3queue4-gw1. Added instance name:instance2_24.5 tag:24.5 base_cmd:['docker', 'compose', '--env-file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/.env', '--project-name', 'rootteststorages3queue4-gw1', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_azurite.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/old_instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node1/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node2/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_too_many_parts/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_24.5/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2_24.5/docker-compose.yml'] docker_compose_yml_dir:/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/ (cluster.py:1942, add_instance) 2025-07-11 01:21:29 [ 573 ] DEBUG : clickhouse_start_command: clickhouse server --config-file=/etc/clickhouse-server/{main_config_file} --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log (cluster.py:1656, add_instance) 2025-07-11 01:21:29 [ 573 ] DEBUG : Cluster name:4 project_name:rootteststorages3queue4-gw1. Added instance name:instance3_24.5 tag:24.5 base_cmd:['docker', 'compose', '--env-file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/.env', '--project-name', 'rootteststorages3queue4-gw1', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_azurite.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/old_instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node1/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node2/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_too_many_parts/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_24.5/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2_24.5/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance3_24.5/docker-compose.yml'] docker_compose_yml_dir:/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/ (cluster.py:1942, add_instance) 2025-07-11 01:21:29 [ 573 ] DEBUG : clickhouse_start_command: clickhouse server --config-file=/etc/clickhouse-server/{main_config_file} --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log (cluster.py:1656, add_instance) 2025-07-11 01:21:29 [ 573 ] DEBUG : Cluster name:4 project_name:rootteststorages3queue4-gw1. Added instance name:instance4_24.5 tag:24.5 base_cmd:['docker', 'compose', '--env-file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/.env', '--project-name', 'rootteststorages3queue4-gw1', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_azurite.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/old_instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node1/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node2/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_too_many_parts/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_24.5/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2_24.5/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance3_24.5/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance4_24.5/docker-compose.yml'] docker_compose_yml_dir:/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/ (cluster.py:1942, add_instance) 2025-07-11 01:21:29 [ 573 ] DEBUG : clickhouse_start_command: clickhouse server --config-file=/etc/clickhouse-server/{main_config_file} --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log (cluster.py:1656, add_instance) 2025-07-11 01:21:29 [ 573 ] DEBUG : Cluster name:4 project_name:rootteststorages3queue4-gw1. Added instance name:node_cloud_mode tag:5ccda723c1fc base_cmd:['docker', 'compose', '--env-file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/.env', '--project-name', 'rootteststorages3queue4-gw1', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_azurite.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/old_instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node1/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node2/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_too_many_parts/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_24.5/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2_24.5/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance3_24.5/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance4_24.5/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node_cloud_mode/docker-compose.yml'] docker_compose_yml_dir:/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/ (cluster.py:1942, add_instance) 2025-07-11 01:21:29 [ 573 ] INFO : Starting cluster... (test_4.py:51, started_cluster) 2025-07-11 01:21:29 [ 573 ] INFO : Running tests in /ClickHouse/tests/integration/test_storage_s3_queue/test_4.py (cluster.py:2672, start) 2025-07-11 01:21:29 [ 573 ] DEBUG : Cluster start called. is_up=False (cluster.py:2679, start) 2025-07-11 01:21:29 [ 573 ] DEBUG : Docker networks for project rootteststorages3queue4-gw1 are NETWORK ID NAME DRIVER SCOPE (cluster.py:825, print_all_docker_pieces) 2025-07-11 01:21:29 [ 573 ] DEBUG : Docker containers for project rootteststorages3queue4-gw1 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:833, print_all_docker_pieces) 2025-07-11 01:21:29 [ 573 ] DEBUG : Docker volumes for project rootteststorages3queue4-gw1 are DRIVER VOLUME NAME (cluster.py:841, print_all_docker_pieces) 2025-07-11 01:21:29 [ 573 ] DEBUG : Cleanup called (cluster.py:846, cleanup) 2025-07-11 01:21:29 [ 573 ] DEBUG : Docker networks for project rootteststorages3queue4-gw1 are NETWORK ID NAME DRIVER SCOPE (cluster.py:825, print_all_docker_pieces) 2025-07-11 01:21:29 [ 573 ] DEBUG : Docker containers for project rootteststorages3queue4-gw1 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:833, print_all_docker_pieces) 2025-07-11 01:21:29 [ 573 ] DEBUG : Docker volumes for project rootteststorages3queue4-gw1 are DRIVER VOLUME NAME (cluster.py:841, print_all_docker_pieces) 2025-07-11 01:21:29 [ 573 ] DEBUG : Command:[docker container list --all --filter name='^/rootteststorages3queue4-gw1-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:121, run_and_check) 2025-07-11 01:21:30 [ 573 ] DEBUG : Unstopped containers: {} (cluster.py:860, cleanup) 2025-07-11 01:21:30 [ 573 ] DEBUG : No running containers for project: rootteststorages3queue4-gw1 (cluster.py:874, cleanup) 2025-07-11 01:21:30 [ 573 ] DEBUG : Trying to prune unused networks... (cluster.py:880, cleanup) 2025-07-11 01:21:30 [ 573 ] DEBUG : Trying to prune unused images... (cluster.py:896, cleanup) 2025-07-11 01:21:30 [ 573 ] DEBUG : Command:[docker image prune -f] (cluster.py:121, run_and_check) 2025-07-11 01:21:30 [ 573 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:145, run_and_check) 2025-07-11 01:21:30 [ 573 ] DEBUG : Images pruned (cluster.py:899, cleanup) 2025-07-11 01:21:30 [ 573 ] DEBUG : Trying to prune unused volumes... (cluster.py:905, cleanup) 2025-07-11 01:21:30 [ 573 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:121, run_and_check) 2025-07-11 01:21:30 [ 573 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2025-07-11 01:21:30 [ 573 ] DEBUG : Volumes pruned: 1 (cluster.py:910, cleanup) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup directory for instance: instance (cluster.py:2692, start) 2025-07-11 01:21:30 [ 573 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4536, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Create directory for common tests configuration (cluster.py:4541, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Copy common configuration from helpers (cluster.py:4561, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Generate and write macros file (cluster.py:4613, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_storage_s3_queue/configs/zookeeper.xml', '/ClickHouse/tests/integration/test_storage_s3_queue/configs/s3queue_log.xml'] to /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance/configs/config.d (cluster.py:4649, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance/database (cluster.py:4666, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance/logs (cluster.py:4677, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Entrypoint cmd: bash -c "trap 'pkill tail' INT TERM; clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon -- ; coproc tail -f /dev/null; wait $$!" (cluster.py:4758, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup directory for instance: instance2 (cluster.py:2692, start) 2025-07-11 01:21:30 [ 573 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4536, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Create directory for common tests configuration (cluster.py:4541, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Copy common configuration from helpers (cluster.py:4561, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Generate and write macros file (cluster.py:4613, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_storage_s3_queue/configs/s3queue_log.xml'] to /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2/configs/config.d (cluster.py:4649, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2/database (cluster.py:4666, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2/logs (cluster.py:4677, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Entrypoint cmd: bash -c "trap 'pkill tail' INT TERM; clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon -- ; coproc tail -f /dev/null; wait $$!" (cluster.py:4758, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup directory for instance: old_instance (cluster.py:2692, start) 2025-07-11 01:21:30 [ 573 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4536, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Create directory for common tests configuration (cluster.py:4541, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Copy common configuration from helpers (cluster.py:4561, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Generate and write macros file (cluster.py:4613, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Copy custom test config files [] to /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/old_instance/configs/config.d (cluster.py:4649, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/old_instance/database (cluster.py:4666, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/old_instance/logs (cluster.py:4677, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Entrypoint cmd: bash -c "trap 'pkill tail' INT TERM; clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon -- ; coproc tail -f /dev/null; wait $$!" (cluster.py:4758, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup directory for instance: node1 (cluster.py:2692, start) 2025-07-11 01:21:30 [ 573 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4536, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Create directory for common tests configuration (cluster.py:4541, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Copy common configuration from helpers (cluster.py:4561, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Generate and write macros file (cluster.py:4613, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_storage_s3_queue/configs/zookeeper.xml', '/ClickHouse/tests/integration/test_storage_s3_queue/configs/s3queue_log.xml', '/ClickHouse/tests/integration/test_storage_s3_queue/configs/remote_servers.xml'] to /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node1/configs/config.d (cluster.py:4649, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node1/database (cluster.py:4666, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node1/logs (cluster.py:4677, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Entrypoint cmd: bash -c "trap 'pkill tail' INT TERM; clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon -- ; coproc tail -f /dev/null; wait $$!" (cluster.py:4758, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup directory for instance: node2 (cluster.py:2692, start) 2025-07-11 01:21:30 [ 573 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4536, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Create directory for common tests configuration (cluster.py:4541, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Copy common configuration from helpers (cluster.py:4561, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Generate and write macros file (cluster.py:4613, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_storage_s3_queue/configs/zookeeper.xml', '/ClickHouse/tests/integration/test_storage_s3_queue/configs/s3queue_log.xml', '/ClickHouse/tests/integration/test_storage_s3_queue/configs/remote_servers.xml'] to /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node2/configs/config.d (cluster.py:4649, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node2/database (cluster.py:4666, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node2/logs (cluster.py:4677, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Entrypoint cmd: bash -c "trap 'pkill tail' INT TERM; clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon -- ; coproc tail -f /dev/null; wait $$!" (cluster.py:4758, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup directory for instance: instance_too_many_parts (cluster.py:2692, start) 2025-07-11 01:21:30 [ 573 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4536, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Create directory for common tests configuration (cluster.py:4541, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Copy common configuration from helpers (cluster.py:4561, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Generate and write macros file (cluster.py:4613, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_storage_s3_queue/configs/s3queue_log.xml', '/ClickHouse/tests/integration/test_storage_s3_queue/configs/merge_tree.xml'] to /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_too_many_parts/configs/config.d (cluster.py:4649, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_too_many_parts/database (cluster.py:4666, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_too_many_parts/logs (cluster.py:4677, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Entrypoint cmd: bash -c "trap 'pkill tail' INT TERM; clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon -- ; coproc tail -f /dev/null; wait $$!" (cluster.py:4758, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup directory for instance: instance_24.5 (cluster.py:2692, start) 2025-07-11 01:21:30 [ 573 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4536, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Create directory for common tests configuration (cluster.py:4541, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Copy common configuration from helpers (cluster.py:4561, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Generate and write macros file (cluster.py:4613, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Copy custom test config files [] to /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_24.5/configs/config.d (cluster.py:4649, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_24.5/database (cluster.py:4666, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_24.5/logs (cluster.py:4677, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Entrypoint cmd: bash -c "trap 'pkill tail' INT TERM; clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon -- ; coproc tail -f /dev/null; wait $$!" (cluster.py:4758, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup directory for instance: instance2_24.5 (cluster.py:2692, start) 2025-07-11 01:21:30 [ 573 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4536, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Create directory for common tests configuration (cluster.py:4541, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Copy common configuration from helpers (cluster.py:4561, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Generate and write macros file (cluster.py:4613, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Copy custom test config files [] to /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2_24.5/configs/config.d (cluster.py:4649, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2_24.5/database (cluster.py:4666, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2_24.5/logs (cluster.py:4677, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Entrypoint cmd: bash -c "trap 'pkill tail' INT TERM; clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon -- ; coproc tail -f /dev/null; wait $$!" (cluster.py:4758, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup directory for instance: instance3_24.5 (cluster.py:2692, start) 2025-07-11 01:21:30 [ 573 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4536, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Create directory for common tests configuration (cluster.py:4541, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Copy common configuration from helpers (cluster.py:4561, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Generate and write macros file (cluster.py:4613, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_storage_s3_queue/configs/remote_servers_245.xml'] to /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance3_24.5/configs/config.d (cluster.py:4649, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance3_24.5/database (cluster.py:4666, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance3_24.5/logs (cluster.py:4677, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Entrypoint cmd: bash -c "trap 'pkill tail' INT TERM; clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon -- ; coproc tail -f /dev/null; wait $$!" (cluster.py:4758, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup directory for instance: instance4_24.5 (cluster.py:2692, start) 2025-07-11 01:21:30 [ 573 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4536, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Create directory for common tests configuration (cluster.py:4541, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Copy common configuration from helpers (cluster.py:4561, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Generate and write macros file (cluster.py:4613, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_storage_s3_queue/configs/remote_servers_245.xml'] to /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance4_24.5/configs/config.d (cluster.py:4649, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance4_24.5/database (cluster.py:4666, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance4_24.5/logs (cluster.py:4677, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Entrypoint cmd: bash -c "trap 'pkill tail' INT TERM; clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon -- ; coproc tail -f /dev/null; wait $$!" (cluster.py:4758, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup directory for instance: node_cloud_mode (cluster.py:2692, start) 2025-07-11 01:21:30 [ 573 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4536, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Create directory for common tests configuration (cluster.py:4541, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Copy common configuration from helpers (cluster.py:4561, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Generate and write macros file (cluster.py:4613, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_storage_s3_queue/configs/zookeeper.xml', '/ClickHouse/tests/integration/test_storage_s3_queue/configs/s3queue_log.xml'] to /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node_cloud_mode/configs/config.d (cluster.py:4649, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node_cloud_mode/database (cluster.py:4666, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node_cloud_mode/logs (cluster.py:4677, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Entrypoint cmd: bash -c "trap 'pkill tail' INT TERM; clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon -- ; coproc tail -f /dev/null; wait $$!" (cluster.py:4758, create_dir) 2025-07-11 01:21:30 [ 573 ] DEBUG : Env {'ASAN_OPTIONS': 'use_sigaltstack=0', 'TSAN_OPTIONS': 'use_sigaltstack=0', 'CLICKHOUSE_WATCHDOG_ENABLE': '0', 'CLICKHOUSE_NATS_TLS_SECURE': '0', 'LLVM_PROFILE_FILE': '/var/lib/clickhouse/server_%h_%p_%m.profraw', 'keeper_binary': '/clickhouse', 'keeper_cmd_prefix': 'clickhouse keeper', 'image': 'altinityinfra/integration-test:5ccda723c1fc', 'user': '0', 'keeper_fs': 'bind', 'keeper_logs_dir1': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/keeper1/log', 'keeper_config_dir1': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/keeper1/config', 'keeper_db_dir1': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/keeper1/coordination', 'keeper_logs_dir2': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/keeper2/log', 'keeper_config_dir2': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/keeper2/config', 'keeper_db_dir2': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/keeper2/coordination', 'keeper_logs_dir3': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/keeper3/log', 'keeper_config_dir3': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/keeper3/config', 'keeper_db_dir3': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/keeper3/coordination', 'MINIO_CERTS_DIR': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/minio/certs', 'MINIO_DATA_DIR': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/minio/data', 'MINIO_PORT': '9001', 'SSL_CERT_FILE': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/minio/certs/public.crt', 'RESOLVER_LOGS': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/resolver', 'RESOLVER_LOGS_FS': 'bind', 'AZURITE_PORT': '30050', 'AZURITE_STORAGE_ACCOUNT_URL': 'http://azurite1:30050/devstoreaccount1', 'AZURITE_CONNECTION_STRING': 'DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://azurite1:30050/devstoreaccount1;'} stored in /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/.env (cluster.py:96, _create_env_file) 2025-07-11 01:21:30 [ 573 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2025-07-11 01:21:30 [ 573 ] DEBUG : No config file found (config.py:28, find_config_file) 2025-07-11 01:21:30 [ 573 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2025-07-11 01:21:30 [ 573 ] DEBUG : No config file found (config.py:28, find_config_file) 2025-07-11 01:21:30 [ 573 ] DEBUG : http://localhost:None "GET /version HTTP/1.1" 200 826 (connectionpool.py:547, _make_request) 2025-07-11 01:21:30 [ 573 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/.env --project-name rootteststorages3queue4-gw1 --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_azurite.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/old_instance/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node1/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node2/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_too_many_parts/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_24.5/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2_24.5/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance3_24.5/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance4_24.5/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node_cloud_mode/docker-compose.yml pull] (cluster.py:121, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: instance2_24.5 Skipped - Image is already being pulled by instance4_24.5 (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: instance3_24.5 Skipped - Image is already being pulled by instance4_24.5 (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: instance2 Skipped - Image is already being pulled by zoo2 (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: node1 Skipped - Image is already being pulled by zoo2 (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: instance_24.5 Skipped - Image is already being pulled by instance4_24.5 (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: zoo3 Skipped - Image is already being pulled by zoo2 (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: instance Skipped - Image is already being pulled by zoo2 (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: node2 Skipped - Image is already being pulled by zoo2 (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: instance_too_many_parts Skipped - Image is already being pulled by zoo2 (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: node_cloud_mode Skipped - Image is already being pulled by zoo2 (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: zoo1 Skipped - Image is already being pulled by zoo2 (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: proxy2 Skipped - Image is already being pulled by proxy1 (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: instance4_24.5 Pulling (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: azurite1 Pulling (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: zoo2 Pulling (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: old_instance Pulling (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: resolver Pulling (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: minio1 Pulling (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: proxy1 Pulling (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: minio1 Pulled (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: instance4_24.5 Pulled (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: resolver Pulled (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: zoo2 Pulled (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: proxy1 Pulled (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: old_instance Pulled (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Stderr: azurite1 Pulled (cluster.py:147, run_and_check) 2025-07-11 01:22:31 [ 573 ] DEBUG : Setup ZooKeeper (cluster.py:2733, start) 2025-07-11 01:22:31 [ 573 ] DEBUG : Creating internal ZooKeeper dirs: ['/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/keeper1/log', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/keeper1/config', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/keeper1/coordination', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/keeper2/log', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/keeper2/config', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/keeper2/coordination', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/keeper3/log', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/keeper3/config', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/keeper3/coordination'] (cluster.py:2734, start) 2025-07-11 01:22:31 [ 573 ] DEBUG : Command:[docker compose --project-name rootteststorages3queue4-gw1 --env-file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/.env --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --verbose up -d] (cluster.py:121, run_and_check) 2025-07-11 01:22:32 [ 573 ] DEBUG : Stderr:time="2025-07-11T01:22:31Z" level=trace msg="Docker Desktop integration not enabled" (cluster.py:147, run_and_check) 2025-07-11 01:22:32 [ 573 ] DEBUG : Stderr: Network rootteststorages3queue4-gw1_default Creating (cluster.py:147, run_and_check) 2025-07-11 01:22:32 [ 573 ] DEBUG : Stderr: Network rootteststorages3queue4-gw1_default Created (cluster.py:147, run_and_check) 2025-07-11 01:22:32 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo3-1 Creating (cluster.py:147, run_and_check) 2025-07-11 01:22:32 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo2-1 Creating (cluster.py:147, run_and_check) 2025-07-11 01:22:32 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo1-1 Creating (cluster.py:147, run_and_check) 2025-07-11 01:22:32 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo1-1 Created (cluster.py:147, run_and_check) 2025-07-11 01:22:32 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo2-1 Created (cluster.py:147, run_and_check) 2025-07-11 01:22:32 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo3-1 Created (cluster.py:147, run_and_check) 2025-07-11 01:22:32 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo2-1 Starting (cluster.py:147, run_and_check) 2025-07-11 01:22:32 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo3-1 Starting (cluster.py:147, run_and_check) 2025-07-11 01:22:32 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo1-1 Starting (cluster.py:147, run_and_check) 2025-07-11 01:22:32 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo1-1 Started (cluster.py:147, run_and_check) 2025-07-11 01:22:32 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo2-1 Started (cluster.py:147, run_and_check) 2025-07-11 01:22:32 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo3-1 Started (cluster.py:147, run_and_check) 2025-07-11 01:22:32 [ 573 ] DEBUG : Stderr:time="2025-07-11T01:22:32Z" level=debug msg="otel error" error="" (cluster.py:147, run_and_check) 2025-07-11 01:22:32 [ 573 ] DEBUG : Stderr:time="2025-07-11T01:22:32Z" level=debug msg="otel error" error="" (cluster.py:147, run_and_check) 2025-07-11 01:22:32 [ 573 ] DEBUG : Wait ZooKeeper to start (cluster.py:2398, wait_zookeeper_to_start) 2025-07-11 01:22:32 [ 573 ] DEBUG : get_instance_ip instance_name=zoo1 (cluster.py:1999, get_instance_ip) 2025-07-11 01:22:32 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-zoo1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:22:32 [ 573 ] DEBUG : get_kazoo_client: zoo1, ip:172.16.1.2, port:2181, use_ssl:False (cluster.py:3234, get_kazoo_client) 2025-07-11 01:22:32 [ 573 ] INFO : Connecting to 172.16.1.2(172.16.1.2):2181, use_ssl: False (connection.py:650, _connect) 2025-07-11 01:22:32 [ 573 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-07-11 01:22:32 [ 573 ] INFO : Connecting to 172.16.1.2(172.16.1.2):2181, use_ssl: False (connection.py:650, _connect) 2025-07-11 01:22:32 [ 573 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-07-11 01:22:32 [ 573 ] INFO : Connecting to 172.16.1.2(172.16.1.2):2181, use_ssl: False (connection.py:650, _connect) 2025-07-11 01:22:32 [ 573 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-07-11 01:22:33 [ 573 ] INFO : Connecting to 172.16.1.2(172.16.1.2):2181, use_ssl: False (connection.py:650, _connect) 2025-07-11 01:22:33 [ 573 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-07-11 01:22:33 [ 573 ] INFO : Connecting to 172.16.1.2(172.16.1.2):2181, use_ssl: False (connection.py:650, _connect) 2025-07-11 01:22:33 [ 573 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-07-11 01:22:34 [ 573 ] INFO : Connecting to 172.16.1.2(172.16.1.2):2181, use_ssl: False (connection.py:650, _connect) 2025-07-11 01:22:34 [ 573 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-07-11 01:22:36 [ 573 ] INFO : Connecting to 172.16.1.2(172.16.1.2):2181, use_ssl: False (connection.py:650, _connect) 2025-07-11 01:22:36 [ 573 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=30000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2025-07-11 01:22:36 [ 573 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2025-07-11 01:22:36 [ 573 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2025-07-11 01:22:36 [ 573 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2025-07-11 01:22:36 [ 573 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2025-07-11 01:22:36 [ 573 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2025-07-11 01:22:36 [ 573 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2025-07-11 01:22:36 [ 573 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2025-07-11 01:22:36 [ 573 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2025-07-11 01:22:36 [ 573 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2025-07-11 01:22:36 [ 573 ] DEBUG : get_instance_ip instance_name=zoo2 (cluster.py:1999, get_instance_ip) 2025-07-11 01:22:36 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-zoo2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:22:36 [ 573 ] DEBUG : get_kazoo_client: zoo2, ip:172.16.1.3, port:2181, use_ssl:False (cluster.py:3234, get_kazoo_client) 2025-07-11 01:22:36 [ 573 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2025-07-11 01:22:36 [ 573 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=30000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2025-07-11 01:22:36 [ 573 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2025-07-11 01:22:36 [ 573 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2025-07-11 01:22:36 [ 573 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2025-07-11 01:22:36 [ 573 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2025-07-11 01:22:36 [ 573 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2025-07-11 01:22:36 [ 573 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2025-07-11 01:22:36 [ 573 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2025-07-11 01:22:36 [ 573 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2025-07-11 01:22:36 [ 573 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2025-07-11 01:22:36 [ 573 ] DEBUG : get_instance_ip instance_name=zoo3 (cluster.py:1999, get_instance_ip) 2025-07-11 01:22:36 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-zoo3-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:22:36 [ 573 ] DEBUG : get_kazoo_client: zoo3, ip:172.16.1.4, port:2181, use_ssl:False (cluster.py:3234, get_kazoo_client) 2025-07-11 01:22:36 [ 573 ] INFO : Connecting to 172.16.1.4(172.16.1.4):2181, use_ssl: False (connection.py:650, _connect) 2025-07-11 01:22:36 [ 573 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=30000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2025-07-11 01:22:36 [ 573 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2025-07-11 01:22:36 [ 573 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2025-07-11 01:22:36 [ 573 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2025-07-11 01:22:36 [ 573 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2025-07-11 01:22:36 [ 573 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2025-07-11 01:22:36 [ 573 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2025-07-11 01:22:36 [ 573 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2025-07-11 01:22:36 [ 573 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2025-07-11 01:22:36 [ 573 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2025-07-11 01:22:36 [ 573 ] DEBUG : All instances of ZooKeeper started: ('zoo1', 'zoo2', 'zoo3') (cluster.py:2414, wait_zookeeper_nodes_to_start) 2025-07-11 01:22:36 [ 573 ] INFO : Trying to create Minio instance by command docker compose --project-name rootteststorages3queue4-gw1 --env-file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/.env --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml --verbose up -d (cluster.py:2993, start) 2025-07-11 01:22:36 [ 573 ] DEBUG : Command:[docker compose --project-name rootteststorages3queue4-gw1 --env-file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/.env --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml --verbose up -d] (cluster.py:121, run_and_check) 2025-07-11 01:22:37 [ 573 ] DEBUG : Stderr:time="2025-07-11T01:22:36Z" level=trace msg="Docker Desktop integration not enabled" (cluster.py:147, run_and_check) 2025-07-11 01:22:37 [ 573 ] DEBUG : Stderr: Volume "rootteststorages3queue4-gw1_data1-1" Creating (cluster.py:147, run_and_check) 2025-07-11 01:22:37 [ 573 ] DEBUG : Stderr: Volume "rootteststorages3queue4-gw1_data1-1" Created (cluster.py:147, run_and_check) 2025-07-11 01:22:37 [ 573 ] DEBUG : Stderr:time="2025-07-11T01:22:36Z" level=warning msg="Found orphan containers ([rootteststorages3queue4-gw1-zoo3-1 rootteststorages3queue4-gw1-zoo1-1 rootteststorages3queue4-gw1-zoo2-1]) for this project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up." (cluster.py:147, run_and_check) 2025-07-11 01:22:37 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-proxy2-1 Creating (cluster.py:147, run_and_check) 2025-07-11 01:22:37 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-proxy1-1 Creating (cluster.py:147, run_and_check) 2025-07-11 01:22:37 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-proxy2-1 Created (cluster.py:147, run_and_check) 2025-07-11 01:22:37 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-proxy1-1 Created (cluster.py:147, run_and_check) 2025-07-11 01:22:37 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-minio1-1 Creating (cluster.py:147, run_and_check) 2025-07-11 01:22:37 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-resolver-1 Creating (cluster.py:147, run_and_check) 2025-07-11 01:22:37 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-minio1-1 Created (cluster.py:147, run_and_check) 2025-07-11 01:22:37 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-resolver-1 Created (cluster.py:147, run_and_check) 2025-07-11 01:22:37 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-proxy2-1 Starting (cluster.py:147, run_and_check) 2025-07-11 01:22:37 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-proxy1-1 Starting (cluster.py:147, run_and_check) 2025-07-11 01:22:37 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-proxy2-1 Started (cluster.py:147, run_and_check) 2025-07-11 01:22:37 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-proxy1-1 Started (cluster.py:147, run_and_check) 2025-07-11 01:22:37 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-resolver-1 Starting (cluster.py:147, run_and_check) 2025-07-11 01:22:37 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-minio1-1 Starting (cluster.py:147, run_and_check) 2025-07-11 01:22:37 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-resolver-1 Started (cluster.py:147, run_and_check) 2025-07-11 01:22:37 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-minio1-1 Started (cluster.py:147, run_and_check) 2025-07-11 01:22:37 [ 573 ] DEBUG : Stderr:time="2025-07-11T01:22:37Z" level=debug msg="otel error" error="" (cluster.py:147, run_and_check) 2025-07-11 01:22:37 [ 573 ] DEBUG : Stderr:time="2025-07-11T01:22:37Z" level=debug msg="otel error" error="" (cluster.py:147, run_and_check) 2025-07-11 01:22:37 [ 573 ] INFO : Trying to connect to Minio... (cluster.py:2999, start) 2025-07-11 01:22:37 [ 573 ] DEBUG : get_instance_ip instance_name=minio1 (cluster.py:1999, get_instance_ip) 2025-07-11 01:22:37 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-minio1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:22:37 [ 573 ] DEBUG : get_instance_ip instance_name=proxy1 (cluster.py:1999, get_instance_ip) 2025-07-11 01:22:37 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-proxy1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:22:37 [ 573 ] DEBUG : Starting new HTTP connection (1): 172.16.1.8:9001 (connectionpool.py:245, _new_conn) 2025-07-11 01:22:37 [ 573 ] DEBUG : Incremented Retry for (url='/'): Retry(total=2, connect=None, read=None, redirect=None, status=None) (retry.py:517, increment) 2025-07-11 01:22:37 [ 573 ] WARNING : Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')': / (connectionpool.py:872, urlopen) 2025-07-11 01:22:37 [ 573 ] DEBUG : Starting new HTTP connection (2): 172.16.1.8:9001 (connectionpool.py:245, _new_conn) 2025-07-11 01:22:37 [ 573 ] DEBUG : Incremented Retry for (url='/'): Retry(total=1, connect=None, read=None, redirect=None, status=None) (retry.py:517, increment) 2025-07-11 01:22:37 [ 573 ] WARNING : Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')': / (connectionpool.py:872, urlopen) 2025-07-11 01:22:37 [ 573 ] DEBUG : Starting new HTTP connection (3): 172.16.1.8:9001 (connectionpool.py:245, _new_conn) 2025-07-11 01:22:37 [ 573 ] DEBUG : Incremented Retry for (url='/'): Retry(total=0, connect=None, read=None, redirect=None, status=None) (retry.py:517, increment) 2025-07-11 01:22:37 [ 573 ] WARNING : Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')': / (connectionpool.py:872, urlopen) 2025-07-11 01:22:37 [ 573 ] DEBUG : Starting new HTTP connection (4): 172.16.1.8:9001 (connectionpool.py:245, _new_conn) 2025-07-11 01:22:37 [ 573 ] DEBUG : Can't connect to Minio: HTTPConnectionPool(host='172.16.1.8', port=9001): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')) (cluster.py:2516, wait_minio_to_start) 2025-07-11 01:22:38 [ 573 ] DEBUG : Starting new HTTP connection (5): 172.16.1.8:9001 (connectionpool.py:245, _new_conn) 2025-07-11 01:22:38 [ 573 ] DEBUG : http://172.16.1.8:9001 "GET / HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:22:38 [ 573 ] DEBUG : Connected to Minio. (cluster.py:2496, wait_minio_to_start) 2025-07-11 01:22:38 [ 573 ] DEBUG : http://172.16.1.8:9001 "GET /root?location= HTTP/1.1" 404 0 (connectionpool.py:547, _make_request) 2025-07-11 01:22:38 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:22:38 [ 573 ] DEBUG : S3 bucket 'root' created (cluster.py:2511, wait_minio_to_start) 2025-07-11 01:22:38 [ 573 ] DEBUG : http://172.16.1.8:9001 "GET /root2?location= HTTP/1.1" 404 0 (connectionpool.py:547, _make_request) 2025-07-11 01:22:38 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root2 HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:22:38 [ 573 ] DEBUG : S3 bucket 'root2' created (cluster.py:2511, wait_minio_to_start) 2025-07-11 01:22:38 [ 573 ] INFO : Trying to create Azurite instance by command docker compose --project-name rootteststorages3queue4-gw1 --env-file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/.env --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_azurite.yml --verbose up -d (cluster.py:3004, start) 2025-07-11 01:22:38 [ 573 ] DEBUG : Command:[docker compose --project-name rootteststorages3queue4-gw1 --env-file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/.env --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_azurite.yml --verbose up -d] (cluster.py:121, run_and_check) 2025-07-11 01:22:39 [ 573 ] DEBUG : Stderr:time="2025-07-11T01:22:38Z" level=trace msg="Docker Desktop integration not enabled" (cluster.py:147, run_and_check) 2025-07-11 01:22:39 [ 573 ] DEBUG : Stderr:time="2025-07-11T01:22:38Z" level=warning msg="Found orphan containers ([rootteststorages3queue4-gw1-resolver-1 rootteststorages3queue4-gw1-minio1-1 rootteststorages3queue4-gw1-proxy2-1 rootteststorages3queue4-gw1-proxy1-1 rootteststorages3queue4-gw1-zoo3-1 rootteststorages3queue4-gw1-zoo1-1 rootteststorages3queue4-gw1-zoo2-1]) for this project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up." (cluster.py:147, run_and_check) 2025-07-11 01:22:39 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-azurite1-1 Creating (cluster.py:147, run_and_check) 2025-07-11 01:22:39 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-azurite1-1 Created (cluster.py:147, run_and_check) 2025-07-11 01:22:39 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-azurite1-1 Starting (cluster.py:147, run_and_check) 2025-07-11 01:22:39 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-azurite1-1 Started (cluster.py:147, run_and_check) 2025-07-11 01:22:39 [ 573 ] DEBUG : Stderr:time="2025-07-11T01:22:39Z" level=debug msg="otel error" error="" (cluster.py:147, run_and_check) 2025-07-11 01:22:39 [ 573 ] DEBUG : Stderr:time="2025-07-11T01:22:39Z" level=debug msg="otel error" error="" (cluster.py:147, run_and_check) 2025-07-11 01:22:39 [ 573 ] INFO : Trying to connect to Azurite (cluster.py:3018, start) 2025-07-11 01:22:40 [ 573 ] INFO : Request URL: 'http://127.0.0.1:30050/devstoreaccount1/?restype=REDACTED&comp=REDACTED' Request method: 'GET' Request headers: 'x-ms-version': 'REDACTED' 'Accept': 'application/xml' 'User-Agent': 'azsdk-python-storage-blob/12.19.0 Python/3.10.12 (Linux-5.15.0-130-generic-x86_64-with-glibc2.35)' 'x-ms-date': 'REDACTED' 'x-ms-client-request-id': '8977a9e2-5df5-11f0-ac96-0242ac110002' 'Authorization': 'REDACTED' No body was attached to the request (_universal.py:514, on_request) 2025-07-11 01:22:40 [ 573 ] DEBUG : Starting new HTTP connection (1): 127.0.0.1:30050 (connectionpool.py:245, _new_conn) 2025-07-11 01:22:58 [ 573 ] INFO : Request URL: 'http://127.0.0.1:30050/devstoreaccount1/?restype=REDACTED&comp=REDACTED' Request method: 'GET' Request headers: 'x-ms-version': 'REDACTED' 'Accept': 'application/xml' 'User-Agent': 'azsdk-python-storage-blob/12.19.0 Python/3.10.12 (Linux-5.15.0-130-generic-x86_64-with-glibc2.35)' 'x-ms-date': 'REDACTED' 'x-ms-client-request-id': '948abaea-5df5-11f0-ac96-0242ac110002' 'Authorization': 'REDACTED' No body was attached to the request (_universal.py:514, on_request) 2025-07-11 01:22:58 [ 573 ] DEBUG : Starting new HTTP connection (2): 127.0.0.1:30050 (connectionpool.py:245, _new_conn) 2025-07-11 01:22:58 [ 573 ] DEBUG : http://127.0.0.1:30050 "GET /devstoreaccount1/?restype=account&comp=properties HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:22:58 [ 573 ] INFO : Response status: 200 Response headers: 'Server': 'Azurite-Blob/3.34.0' 'x-ms-client-request-id': '948abaea-5df5-11f0-ac96-0242ac110002' 'x-ms-request-id': '12699534-c3f5-4010-9f68-134dc92f4bb8' 'x-ms-version': 'REDACTED' 'date': 'Fri, 11 Jul 2025 01:22:58 GMT' 'x-ms-sku-name': 'REDACTED' 'x-ms-account-kind': 'REDACTED' 'x-ms-is-hns-enabled': 'REDACTED' 'Connection': 'keep-alive' 'Keep-Alive': 'REDACTED' 'Content-Length': '0' (_universal.py:550, on_response) 2025-07-11 01:22:58 [ 573 ] DEBUG : {'client_request_id': '948abaea-5df5-11f0-ac96-0242ac110002', 'request_id': '12699534-c3f5-4010-9f68-134dc92f4bb8', 'version': '2025-05-05', 'date': datetime.datetime(2025, 7, 11, 1, 22, 58, tzinfo=datetime.timezone.utc), 'sku_name': 'Standard_RAGRS', 'account_kind': 'StorageV2', 'is_hns_enabled': False} (cluster.py:2544, wait_azurite_to_start) 2025-07-11 01:22:58 [ 573 ] INFO : Request URL: 'http://127.0.0.1:30050/devstoreaccount1/?comp=REDACTED&prefix=REDACTED&include=REDACTED' Request method: 'GET' Request headers: 'x-ms-version': 'REDACTED' 'Accept': 'application/xml' 'User-Agent': 'azsdk-python-storage-blob/12.19.0 Python/3.10.12 (Linux-5.15.0-130-generic-x86_64-with-glibc2.35)' 'x-ms-date': 'REDACTED' 'x-ms-client-request-id': '94961c28-5df5-11f0-ac96-0242ac110002' 'Authorization': 'REDACTED' No body was attached to the request (_universal.py:514, on_request) 2025-07-11 01:22:58 [ 573 ] DEBUG : http://127.0.0.1:30050 "GET /devstoreaccount1/?comp=list&prefix=azurite-container&include= HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:22:58 [ 573 ] INFO : Response status: 200 Response headers: 'Server': 'Azurite-Blob/3.34.0' 'x-ms-client-request-id': '94961c28-5df5-11f0-ac96-0242ac110002' 'x-ms-request-id': 'f1135ac5-4b65-4503-8e02-7fcfac030a46' 'x-ms-version': 'REDACTED' 'content-type': 'application/xml' 'Date': 'Fri, 11 Jul 2025 01:22:58 GMT' 'Connection': 'keep-alive' 'Keep-Alive': 'REDACTED' 'Transfer-Encoding': 'chunked' (_universal.py:550, on_response) 2025-07-11 01:22:58 [ 573 ] INFO : Request URL: 'http://127.0.0.1:30050/devstoreaccount1/azurite-container?restype=REDACTED' Request method: 'GET' Request headers: 'x-ms-version': 'REDACTED' 'Accept': 'application/xml' 'User-Agent': 'azsdk-python-storage-blob/12.19.0 Python/3.10.12 (Linux-5.15.0-130-generic-x86_64-with-glibc2.35)' 'x-ms-date': 'REDACTED' 'x-ms-client-request-id': '9498fb0a-5df5-11f0-ac96-0242ac110002' 'Authorization': 'REDACTED' No body was attached to the request (_universal.py:514, on_request) 2025-07-11 01:22:58 [ 573 ] DEBUG : http://127.0.0.1:30050 "GET /devstoreaccount1/azurite-container?restype=container HTTP/1.1" 404 None (connectionpool.py:547, _make_request) 2025-07-11 01:22:59 [ 573 ] INFO : Response status: 404 Response headers: 'Server': 'Azurite-Blob/3.34.0' 'x-ms-error-code': 'ContainerNotFound' 'x-ms-request-id': 'f19032ff-ed84-48cc-8b13-212c88802718' 'content-type': 'application/xml' 'Date': 'Fri, 11 Jul 2025 01:22:58 GMT' 'Connection': 'keep-alive' 'Keep-Alive': 'REDACTED' 'Transfer-Encoding': 'chunked' (_universal.py:550, on_response) 2025-07-11 01:22:59 [ 573 ] DEBUG : azurite container 'azurite-container' doesn't exist, creating it (cluster.py:2566, wait_azurite_to_start) 2025-07-11 01:22:59 [ 573 ] INFO : Request URL: 'http://127.0.0.1:30050/devstoreaccount1/azurite-container?restype=REDACTED' Request method: 'PUT' Request headers: 'x-ms-version': 'REDACTED' 'Accept': 'application/xml' 'User-Agent': 'azsdk-python-storage-blob/12.19.0 Python/3.10.12 (Linux-5.15.0-130-generic-x86_64-with-glibc2.35)' 'x-ms-date': 'REDACTED' 'x-ms-client-request-id': '949aaba8-5df5-11f0-ac96-0242ac110002' 'Authorization': 'REDACTED' No body was attached to the request (_universal.py:514, on_request) 2025-07-11 01:22:59 [ 573 ] DEBUG : http://127.0.0.1:30050 "PUT /devstoreaccount1/azurite-container?restype=container HTTP/1.1" 201 0 (connectionpool.py:547, _make_request) 2025-07-11 01:22:59 [ 573 ] INFO : Response status: 201 Response headers: 'Server': 'Azurite-Blob/3.34.0' 'etag': '"0x218B7CB4E1405C0"' 'last-modified': 'Fri, 11 Jul 2025 01:22:59 GMT' 'x-ms-client-request-id': '949aaba8-5df5-11f0-ac96-0242ac110002' 'x-ms-request-id': '06c107f6-a612-479e-968f-f34ece3b976e' 'x-ms-version': 'REDACTED' 'Date': 'Fri, 11 Jul 2025 01:22:59 GMT' 'Connection': 'keep-alive' 'Keep-Alive': 'REDACTED' 'Content-Length': '0' (_universal.py:550, on_response) 2025-07-11 01:22:59 [ 573 ] DEBUG : ('Trying to create ClickHouse instance by command %s', 'docker compose --env-file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/.env --project-name rootteststorages3queue4-gw1 --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_azurite.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/old_instance/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node1/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node2/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_too_many_parts/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_24.5/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2_24.5/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance3_24.5/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance4_24.5/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node_cloud_mode/docker-compose.yml up -d --no-recreate') (cluster.py:3061, start) 2025-07-11 01:22:59 [ 573 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/.env --project-name rootteststorages3queue4-gw1 --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_azurite.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/old_instance/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node1/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node2/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_too_many_parts/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_24.5/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2_24.5/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance3_24.5/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance4_24.5/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node_cloud_mode/docker-compose.yml up -d --no-recreate] (cluster.py:121, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-azurite1-1 Running (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo1-1 Running (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo2-1 Running (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-proxy2-1 Running (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-proxy1-1 Running (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo3-1 Running (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-resolver-1 Running (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-minio1-1 Running (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance_24.5-1 Creating (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-old_instance-1 Creating (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance2-1 Creating (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance_too_many_parts-1 Creating (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance-1 Creating (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance3_24.5-1 Creating (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node1-1 Creating (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node2-1 Creating (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance2_24.5-1 Creating (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node_cloud_mode-1 Creating (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance4_24.5-1 Creating (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node1-1 Created (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance_24.5-1 Created (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-old_instance-1 Created (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance4_24.5-1 Created (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node_cloud_mode-1 Created (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node2-1 Created (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance3_24.5-1 Created (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance-1 Created (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance2_24.5-1 Created (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance_too_many_parts-1 Created (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance2-1 Created (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance4_24.5-1 Starting (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance2_24.5-1 Starting (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node2-1 Starting (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node_cloud_mode-1 Starting (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance_24.5-1 Starting (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance3_24.5-1 Starting (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node1-1 Starting (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-old_instance-1 Starting (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance2-1 Starting (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance-1 Starting (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance_too_many_parts-1 Starting (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance_too_many_parts-1 Started (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node_cloud_mode-1 Started (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance2-1 Started (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-old_instance-1 Started (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node2-1 Started (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance2_24.5-1 Started (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance-1 Started (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance3_24.5-1 Started (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance4_24.5-1 Started (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance_24.5-1 Started (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node1-1 Started (cluster.py:147, run_and_check) 2025-07-11 01:23:00 [ 573 ] DEBUG : ClickHouse instance created (cluster.py:3069, start) 2025-07-11 01:23:00 [ 573 ] DEBUG : get_instance_ip instance_name=instance (cluster.py:1999, get_instance_ip) 2025-07-11 01:23:00 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-instance-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:00 [ 573 ] DEBUG : get_instance_ip instance_name=instance (cluster.py:2009, get_instance_global_ipv6) 2025-07-11 01:23:00 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-instance-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:00 [ 573 ] DEBUG : Waiting for ClickHouse start in instance, ip: 172.16.1.16... (cluster.py:3077, start) 2025-07-11 01:23:00 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-instance-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:00 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/9b468775af4b3d0a14c4aa8c0a8c71c7a0e5b96c5a35f19e951d763f1410cb5e/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:00 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/9b468775af4b3d0a14c4aa8c0a8c71c7a0e5b96c5a35f19e951d763f1410cb5e/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:00 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/9b468775af4b3d0a14c4aa8c0a8c71c7a0e5b96c5a35f19e951d763f1410cb5e/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:00 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/9b468775af4b3d0a14c4aa8c0a8c71c7a0e5b96c5a35f19e951d763f1410cb5e/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:01 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/9b468775af4b3d0a14c4aa8c0a8c71c7a0e5b96c5a35f19e951d763f1410cb5e/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:01 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/9b468775af4b3d0a14c4aa8c0a8c71c7a0e5b96c5a35f19e951d763f1410cb5e/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:01 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/9b468775af4b3d0a14c4aa8c0a8c71c7a0e5b96c5a35f19e951d763f1410cb5e/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:01 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/9b468775af4b3d0a14c4aa8c0a8c71c7a0e5b96c5a35f19e951d763f1410cb5e/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:01 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/9b468775af4b3d0a14c4aa8c0a8c71c7a0e5b96c5a35f19e951d763f1410cb5e/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:01 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/9b468775af4b3d0a14c4aa8c0a8c71c7a0e5b96c5a35f19e951d763f1410cb5e/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:01 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/9b468775af4b3d0a14c4aa8c0a8c71c7a0e5b96c5a35f19e951d763f1410cb5e/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:01 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/9b468775af4b3d0a14c4aa8c0a8c71c7a0e5b96c5a35f19e951d763f1410cb5e/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:01 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/9b468775af4b3d0a14c4aa8c0a8c71c7a0e5b96c5a35f19e951d763f1410cb5e/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/9b468775af4b3d0a14c4aa8c0a8c71c7a0e5b96c5a35f19e951d763f1410cb5e/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/9b468775af4b3d0a14c4aa8c0a8c71c7a0e5b96c5a35f19e951d763f1410cb5e/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/9b468775af4b3d0a14c4aa8c0a8c71c7a0e5b96c5a35f19e951d763f1410cb5e/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/9b468775af4b3d0a14c4aa8c0a8c71c7a0e5b96c5a35f19e951d763f1410cb5e/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/9b468775af4b3d0a14c4aa8c0a8c71c7a0e5b96c5a35f19e951d763f1410cb5e/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/9b468775af4b3d0a14c4aa8c0a8c71c7a0e5b96c5a35f19e951d763f1410cb5e/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : ClickHouse instance started (cluster.py:3081, start) 2025-07-11 01:23:02 [ 573 ] DEBUG : get_instance_ip instance_name=instance2 (cluster.py:1999, get_instance_ip) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-instance2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : get_instance_ip instance_name=instance2 (cluster.py:2009, get_instance_global_ipv6) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-instance2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : Waiting for ClickHouse start in instance2, ip: 172.16.1.14... (cluster.py:3077, start) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-instance2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/fb73de23104b08bde57cc8ccd3649b6e67090b94d0d08dab8b6a30ab4fad85c0/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : ClickHouse instance2 started (cluster.py:3081, start) 2025-07-11 01:23:02 [ 573 ] DEBUG : get_instance_ip instance_name=old_instance (cluster.py:1999, get_instance_ip) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-old_instance-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : get_instance_ip instance_name=old_instance (cluster.py:2009, get_instance_global_ipv6) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-old_instance-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : Waiting for ClickHouse start in old_instance, ip: 172.16.1.15... (cluster.py:3077, start) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-old_instance-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/e16b1268de8f19d21ecfea9c672f8aee0333b59f19da9a771da0dfd7824b3c92/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : ClickHouse old_instance started (cluster.py:3081, start) 2025-07-11 01:23:02 [ 573 ] DEBUG : get_instance_ip instance_name=node1 (cluster.py:1999, get_instance_ip) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-node1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : get_instance_ip instance_name=node1 (cluster.py:2009, get_instance_global_ipv6) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-node1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : Waiting for ClickHouse start in node1, ip: 172.16.1.20... (cluster.py:3077, start) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-node1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d22a3338bfb1707066e144a35c855b990e6916cde95a7e457ad8b75e7349c63/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : ClickHouse node1 started (cluster.py:3081, start) 2025-07-11 01:23:02 [ 573 ] DEBUG : get_instance_ip instance_name=node2 (cluster.py:1999, get_instance_ip) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-node2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : get_instance_ip instance_name=node2 (cluster.py:2009, get_instance_global_ipv6) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-node2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : Waiting for ClickHouse start in node2, ip: 172.16.1.11... (cluster.py:3077, start) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-node2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/477a28a5aa8e03304cfa913e4f6861a6802c4c68ec1cffc6d26206eb616c250e/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : ClickHouse node2 started (cluster.py:3081, start) 2025-07-11 01:23:02 [ 573 ] DEBUG : get_instance_ip instance_name=instance_too_many_parts (cluster.py:1999, get_instance_ip) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-instance_too_many_parts-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : get_instance_ip instance_name=instance_too_many_parts (cluster.py:2009, get_instance_global_ipv6) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-instance_too_many_parts-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : Waiting for ClickHouse start in instance_too_many_parts, ip: 172.16.1.10... (cluster.py:3077, start) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-instance_too_many_parts-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/eeb5fb975c1faa1ba35bdce1ad0c79ffc4bf2550e434c4a202ac43cf8d4077b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : ClickHouse instance_too_many_parts started (cluster.py:3081, start) 2025-07-11 01:23:02 [ 573 ] DEBUG : get_instance_ip instance_name=instance_24.5 (cluster.py:1999, get_instance_ip) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-instance_24.5-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : get_instance_ip instance_name=instance_24.5 (cluster.py:2009, get_instance_global_ipv6) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-instance_24.5-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : Waiting for ClickHouse start in instance_24.5, ip: 172.16.1.19... (cluster.py:3077, start) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-instance_24.5-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/e57a474ba0d444beab9ac36105b45618f088bbebc048d44fcae7c35da929d603/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : ClickHouse instance_24.5 started (cluster.py:3081, start) 2025-07-11 01:23:02 [ 573 ] DEBUG : get_instance_ip instance_name=instance2_24.5 (cluster.py:1999, get_instance_ip) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-instance2_24.5-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : get_instance_ip instance_name=instance2_24.5 (cluster.py:2009, get_instance_global_ipv6) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-instance2_24.5-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : Waiting for ClickHouse start in instance2_24.5, ip: 172.16.1.13... (cluster.py:3077, start) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-instance2_24.5-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/e2688041539b5327f1a86115724e2f3ab90cf963aa4335016c6ca638a231b302/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : ClickHouse instance2_24.5 started (cluster.py:3081, start) 2025-07-11 01:23:02 [ 573 ] DEBUG : get_instance_ip instance_name=instance3_24.5 (cluster.py:1999, get_instance_ip) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-instance3_24.5-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : get_instance_ip instance_name=instance3_24.5 (cluster.py:2009, get_instance_global_ipv6) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-instance3_24.5-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : Waiting for ClickHouse start in instance3_24.5, ip: 172.16.1.18... (cluster.py:3077, start) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-instance3_24.5-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/9a84650b0e4993f32f9f501407181d20be353cf13e7da87ee7bd3fa3da5e2f21/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : ClickHouse instance3_24.5 started (cluster.py:3081, start) 2025-07-11 01:23:02 [ 573 ] DEBUG : get_instance_ip instance_name=instance4_24.5 (cluster.py:1999, get_instance_ip) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-instance4_24.5-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : get_instance_ip instance_name=instance4_24.5 (cluster.py:2009, get_instance_global_ipv6) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-instance4_24.5-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : Waiting for ClickHouse start in instance4_24.5, ip: 172.16.1.17... (cluster.py:3077, start) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-instance4_24.5-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/2f03398e169086d2a1965fca5e51a90c772474ec1c0fe61af553e0fe1d3d626b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : ClickHouse instance4_24.5 started (cluster.py:3081, start) 2025-07-11 01:23:02 [ 573 ] DEBUG : get_instance_ip instance_name=node_cloud_mode (cluster.py:1999, get_instance_ip) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-node_cloud_mode-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : get_instance_ip instance_name=node_cloud_mode (cluster.py:2009, get_instance_global_ipv6) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-node_cloud_mode-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : Waiting for ClickHouse start in node_cloud_mode, ip: 172.16.1.12... (cluster.py:3077, start) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-node_cloud_mode-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/743153c2f7ff9b796464fe04e0864e364d15650951b1370e0b978b1c04a7b839/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:02 [ 573 ] DEBUG : ClickHouse node_cloud_mode started (cluster.py:3081, start) 2025-07-11 01:23:02 [ 573 ] INFO : Cluster started (test_4.py:53, started_cluster) 2025-07-11 01:23:02 [ 573 ] DEBUG : Executing query DROP DATABASE IF EXISTS default; CREATE DATABASE default; on instance (cluster.py:3570, query) 2025-07-11 01:23:03 [ 573 ] DEBUG : Executing query DROP DATABASE IF EXISTS default; CREATE DATABASE default; on instance2 (cluster.py:3570, query) 2025-07-11 01:23:03 [ 573 ] DEBUG : http://172.16.1.8:9001 "GET /root?delimiter=&encoding-type=url&list-type=2&max-keys=1000&prefix= HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:03 [ 573 ] INFO : Request URL: 'http://127.0.0.1:30050/devstoreaccount1/azurite-container?restype=REDACTED' Request method: 'GET' Request headers: 'x-ms-version': 'REDACTED' 'Accept': 'application/xml' 'User-Agent': 'azsdk-python-storage-blob/12.19.0 Python/3.10.12 (Linux-5.15.0-130-generic-x86_64-with-glibc2.35)' 'x-ms-date': 'REDACTED' 'x-ms-client-request-id': '97310ef2-5df5-11f0-ac96-0242ac110002' 'Authorization': 'REDACTED' No body was attached to the request (_universal.py:514, on_request) 2025-07-11 01:23:03 [ 573 ] DEBUG : http://127.0.0.1:30050 "GET /devstoreaccount1/azurite-container?restype=container HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:03 [ 573 ] INFO : Response status: 200 Response headers: 'Server': 'Azurite-Blob/3.34.0' 'etag': '"0x218B7CB4E1405C0"' 'last-modified': 'Fri, 11 Jul 2025 01:22:59 GMT' 'x-ms-lease-state': 'REDACTED' 'x-ms-lease-status': 'REDACTED' 'x-ms-client-request-id': '97310ef2-5df5-11f0-ac96-0242ac110002' 'x-ms-request-id': 'f0ed0060-f816-4d18-a620-afd8d2c83c81' 'x-ms-version': 'REDACTED' 'x-ms-has-immutability-policy': 'REDACTED' 'x-ms-has-legal-hold': 'REDACTED' 'Date': 'Fri, 11 Jul 2025 01:23:03 GMT' 'Connection': 'keep-alive' 'Keep-Alive': 'REDACTED' 'Content-Length': '0' (_universal.py:550, on_response) 2025-07-11 01:23:03 [ 573 ] INFO : Request URL: 'http://127.0.0.1:30050/devstoreaccount1/azurite-container?restype=REDACTED&comp=REDACTED' Request method: 'GET' Request headers: 'x-ms-version': 'REDACTED' 'Accept': 'application/xml' 'User-Agent': 'azsdk-python-storage-blob/12.19.0 Python/3.10.12 (Linux-5.15.0-130-generic-x86_64-with-glibc2.35)' 'x-ms-date': 'REDACTED' 'x-ms-client-request-id': '97338ccc-5df5-11f0-ac96-0242ac110002' 'Authorization': 'REDACTED' No body was attached to the request (_universal.py:514, on_request) 2025-07-11 01:23:03 [ 573 ] DEBUG : http://127.0.0.1:30050 "GET /devstoreaccount1/azurite-container?restype=container&comp=list HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:03 [ 573 ] INFO : Response status: 200 Response headers: 'Server': 'Azurite-Blob/3.34.0' 'content-type': 'application/xml' 'x-ms-client-request-id': '97338ccc-5df5-11f0-ac96-0242ac110002' 'x-ms-request-id': 'b1d220ba-959f-4c02-8d06-db0e5d4870b8' 'x-ms-version': 'REDACTED' 'date': 'Fri, 11 Jul 2025 01:23:03 GMT' 'Connection': 'keep-alive' 'Keep-Alive': 'REDACTED' 'Transfer-Encoding': 'chunked' (_universal.py:550, on_response) 2025-07-11 01:23:03 [ 573 ] DEBUG : Deleting blobs: [] (test_4.py:38, s3_queue_setup_teardown) ----------------------------- Captured stdout call ----------------------------- Generating files: [('test_registry_feada6f9_data/test_0.csv', 0), ('test_registry_feada6f9_data/test_1.csv', 1), ('test_registry_feada6f9_data/test_10.csv', 10), ('test_registry_feada6f9_data/test_100.csv', 100), ('test_registry_feada6f9_data/test_101.csv', 101), ('test_registry_feada6f9_data/test_102.csv', 102), ('test_registry_feada6f9_data/test_103.csv', 103), ('test_registry_feada6f9_data/test_104.csv', 104), ('test_registry_feada6f9_data/test_105.csv', 105), ('test_registry_feada6f9_data/test_106.csv', 106), ('test_registry_feada6f9_data/test_107.csv', 107), ('test_registry_feada6f9_data/test_108.csv', 108), ('test_registry_feada6f9_data/test_109.csv', 109), ('test_registry_feada6f9_data/test_11.csv', 11), ('test_registry_feada6f9_data/test_110.csv', 110), ('test_registry_feada6f9_data/test_111.csv', 111), ('test_registry_feada6f9_data/test_112.csv', 112), ('test_registry_feada6f9_data/test_113.csv', 113), ('test_registry_feada6f9_data/test_114.csv', 114), ('test_registry_feada6f9_data/test_115.csv', 115), ('test_registry_feada6f9_data/test_116.csv', 116), ('test_registry_feada6f9_data/test_117.csv', 117), ('test_registry_feada6f9_data/test_118.csv', 118), ('test_registry_feada6f9_data/test_119.csv', 119), ('test_registry_feada6f9_data/test_12.csv', 12), ('test_registry_feada6f9_data/test_120.csv', 120), ('test_registry_feada6f9_data/test_121.csv', 121), ('test_registry_feada6f9_data/test_122.csv', 122), ('test_registry_feada6f9_data/test_123.csv', 123), ('test_registry_feada6f9_data/test_124.csv', 124), ('test_registry_feada6f9_data/test_125.csv', 125), ('test_registry_feada6f9_data/test_126.csv', 126), ('test_registry_feada6f9_data/test_127.csv', 127), ('test_registry_feada6f9_data/test_128.csv', 128), ('test_registry_feada6f9_data/test_129.csv', 129), ('test_registry_feada6f9_data/test_13.csv', 13), ('test_registry_feada6f9_data/test_130.csv', 130), ('test_registry_feada6f9_data/test_131.csv', 131), ('test_registry_feada6f9_data/test_132.csv', 132), ('test_registry_feada6f9_data/test_133.csv', 133), ('test_registry_feada6f9_data/test_134.csv', 134), ('test_registry_feada6f9_data/test_135.csv', 135), ('test_registry_feada6f9_data/test_136.csv', 136), ('test_registry_feada6f9_data/test_137.csv', 137), ('test_registry_feada6f9_data/test_138.csv', 138), ('test_registry_feada6f9_data/test_139.csv', 139), ('test_registry_feada6f9_data/test_14.csv', 14), ('test_registry_feada6f9_data/test_140.csv', 140), ('test_registry_feada6f9_data/test_141.csv', 141), ('test_registry_feada6f9_data/test_142.csv', 142), ('test_registry_feada6f9_data/test_143.csv', 143), ('test_registry_feada6f9_data/test_144.csv', 144), ('test_registry_feada6f9_data/test_145.csv', 145), ('test_registry_feada6f9_data/test_146.csv', 146), ('test_registry_feada6f9_data/test_147.csv', 147), ('test_registry_feada6f9_data/test_148.csv', 148), ('test_registry_feada6f9_data/test_149.csv', 149), ('test_registry_feada6f9_data/test_15.csv', 15), ('test_registry_feada6f9_data/test_150.csv', 150), ('test_registry_feada6f9_data/test_151.csv', 151), ('test_registry_feada6f9_data/test_152.csv', 152), ('test_registry_feada6f9_data/test_153.csv', 153), ('test_registry_feada6f9_data/test_154.csv', 154), ('test_registry_feada6f9_data/test_155.csv', 155), ('test_registry_feada6f9_data/test_156.csv', 156), ('test_registry_feada6f9_data/test_157.csv', 157), ('test_registry_feada6f9_data/test_158.csv', 158), ('test_registry_feada6f9_data/test_159.csv', 159), ('test_registry_feada6f9_data/test_16.csv', 16), ('test_registry_feada6f9_data/test_160.csv', 160), ('test_registry_feada6f9_data/test_161.csv', 161), ('test_registry_feada6f9_data/test_162.csv', 162), ('test_registry_feada6f9_data/test_163.csv', 163), ('test_registry_feada6f9_data/test_164.csv', 164), ('test_registry_feada6f9_data/test_165.csv', 165), ('test_registry_feada6f9_data/test_166.csv', 166), ('test_registry_feada6f9_data/test_167.csv', 167), ('test_registry_feada6f9_data/test_168.csv', 168), ('test_registry_feada6f9_data/test_169.csv', 169), ('test_registry_feada6f9_data/test_17.csv', 17), ('test_registry_feada6f9_data/test_170.csv', 170), ('test_registry_feada6f9_data/test_171.csv', 171), ('test_registry_feada6f9_data/test_172.csv', 172), ('test_registry_feada6f9_data/test_173.csv', 173), ('test_registry_feada6f9_data/test_174.csv', 174), ('test_registry_feada6f9_data/test_175.csv', 175), ('test_registry_feada6f9_data/test_176.csv', 176), ('test_registry_feada6f9_data/test_177.csv', 177), ('test_registry_feada6f9_data/test_178.csv', 178), ('test_registry_feada6f9_data/test_179.csv', 179), ('test_registry_feada6f9_data/test_18.csv', 18), ('test_registry_feada6f9_data/test_180.csv', 180), ('test_registry_feada6f9_data/test_181.csv', 181), ('test_registry_feada6f9_data/test_182.csv', 182), ('test_registry_feada6f9_data/test_183.csv', 183), ('test_registry_feada6f9_data/test_184.csv', 184), ('test_registry_feada6f9_data/test_185.csv', 185), ('test_registry_feada6f9_data/test_186.csv', 186), ('test_registry_feada6f9_data/test_187.csv', 187), ('test_registry_feada6f9_data/test_188.csv', 188), ('test_registry_feada6f9_data/test_189.csv', 189), ('test_registry_feada6f9_data/test_19.csv', 19), ('test_registry_feada6f9_data/test_190.csv', 190), ('test_registry_feada6f9_data/test_191.csv', 191), ('test_registry_feada6f9_data/test_192.csv', 192), ('test_registry_feada6f9_data/test_193.csv', 193), ('test_registry_feada6f9_data/test_194.csv', 194), ('test_registry_feada6f9_data/test_195.csv', 195), ('test_registry_feada6f9_data/test_196.csv', 196), ('test_registry_feada6f9_data/test_197.csv', 197), ('test_registry_feada6f9_data/test_198.csv', 198), ('test_registry_feada6f9_data/test_199.csv', 199), ('test_registry_feada6f9_data/test_2.csv', 2), ('test_registry_feada6f9_data/test_20.csv', 20), ('test_registry_feada6f9_data/test_200.csv', 200), ('test_registry_feada6f9_data/test_201.csv', 201), ('test_registry_feada6f9_data/test_202.csv', 202), ('test_registry_feada6f9_data/test_203.csv', 203), ('test_registry_feada6f9_data/test_204.csv', 204), ('test_registry_feada6f9_data/test_205.csv', 205), ('test_registry_feada6f9_data/test_206.csv', 206), ('test_registry_feada6f9_data/test_207.csv', 207), ('test_registry_feada6f9_data/test_208.csv', 208), ('test_registry_feada6f9_data/test_209.csv', 209), ('test_registry_feada6f9_data/test_21.csv', 21), ('test_registry_feada6f9_data/test_210.csv', 210), ('test_registry_feada6f9_data/test_211.csv', 211), ('test_registry_feada6f9_data/test_212.csv', 212), ('test_registry_feada6f9_data/test_213.csv', 213), ('test_registry_feada6f9_data/test_214.csv', 214), ('test_registry_feada6f9_data/test_215.csv', 215), ('test_registry_feada6f9_data/test_216.csv', 216), ('test_registry_feada6f9_data/test_217.csv', 217), ('test_registry_feada6f9_data/test_218.csv', 218), ('test_registry_feada6f9_data/test_219.csv', 219), ('test_registry_feada6f9_data/test_22.csv', 22), ('test_registry_feada6f9_data/test_220.csv', 220), ('test_registry_feada6f9_data/test_221.csv', 221), ('test_registry_feada6f9_data/test_222.csv', 222), ('test_registry_feada6f9_data/test_223.csv', 223), ('test_registry_feada6f9_data/test_224.csv', 224), ('test_registry_feada6f9_data/test_225.csv', 225), ('test_registry_feada6f9_data/test_226.csv', 226), ('test_registry_feada6f9_data/test_227.csv', 227), ('test_registry_feada6f9_data/test_228.csv', 228), ('test_registry_feada6f9_data/test_229.csv', 229), ('test_registry_feada6f9_data/test_23.csv', 23), ('test_registry_feada6f9_data/test_230.csv', 230), ('test_registry_feada6f9_data/test_231.csv', 231), ('test_registry_feada6f9_data/test_232.csv', 232), ('test_registry_feada6f9_data/test_233.csv', 233), ('test_registry_feada6f9_data/test_234.csv', 234), ('test_registry_feada6f9_data/test_235.csv', 235), ('test_registry_feada6f9_data/test_236.csv', 236), ('test_registry_feada6f9_data/test_237.csv', 237), ('test_registry_feada6f9_data/test_238.csv', 238), ('test_registry_feada6f9_data/test_239.csv', 239), ('test_registry_feada6f9_data/test_24.csv', 24), ('test_registry_feada6f9_data/test_240.csv', 240), ('test_registry_feada6f9_data/test_241.csv', 241), ('test_registry_feada6f9_data/test_242.csv', 242), ('test_registry_feada6f9_data/test_243.csv', 243), ('test_registry_feada6f9_data/test_244.csv', 244), ('test_registry_feada6f9_data/test_245.csv', 245), ('test_registry_feada6f9_data/test_246.csv', 246), ('test_registry_feada6f9_data/test_247.csv', 247), ('test_registry_feada6f9_data/test_248.csv', 248), ('test_registry_feada6f9_data/test_249.csv', 249), ('test_registry_feada6f9_data/test_25.csv', 25), ('test_registry_feada6f9_data/test_250.csv', 250), ('test_registry_feada6f9_data/test_251.csv', 251), ('test_registry_feada6f9_data/test_252.csv', 252), ('test_registry_feada6f9_data/test_253.csv', 253), ('test_registry_feada6f9_data/test_254.csv', 254), ('test_registry_feada6f9_data/test_255.csv', 255), ('test_registry_feada6f9_data/test_256.csv', 256), ('test_registry_feada6f9_data/test_257.csv', 257), ('test_registry_feada6f9_data/test_258.csv', 258), ('test_registry_feada6f9_data/test_259.csv', 259), ('test_registry_feada6f9_data/test_26.csv', 26), ('test_registry_feada6f9_data/test_260.csv', 260), ('test_registry_feada6f9_data/test_261.csv', 261), ('test_registry_feada6f9_data/test_262.csv', 262), ('test_registry_feada6f9_data/test_263.csv', 263), ('test_registry_feada6f9_data/test_264.csv', 264), ('test_registry_feada6f9_data/test_265.csv', 265), ('test_registry_feada6f9_data/test_266.csv', 266), ('test_registry_feada6f9_data/test_267.csv', 267), ('test_registry_feada6f9_data/test_268.csv', 268), ('test_registry_feada6f9_data/test_269.csv', 269), ('test_registry_feada6f9_data/test_27.csv', 27), ('test_registry_feada6f9_data/test_270.csv', 270), ('test_registry_feada6f9_data/test_271.csv', 271), ('test_registry_feada6f9_data/test_272.csv', 272), ('test_registry_feada6f9_data/test_273.csv', 273), ('test_registry_feada6f9_data/test_274.csv', 274), ('test_registry_feada6f9_data/test_275.csv', 275), ('test_registry_feada6f9_data/test_276.csv', 276), ('test_registry_feada6f9_data/test_277.csv', 277), ('test_registry_feada6f9_data/test_278.csv', 278), ('test_registry_feada6f9_data/test_279.csv', 279), ('test_registry_feada6f9_data/test_28.csv', 28), ('test_registry_feada6f9_data/test_280.csv', 280), ('test_registry_feada6f9_data/test_281.csv', 281), ('test_registry_feada6f9_data/test_282.csv', 282), ('test_registry_feada6f9_data/test_283.csv', 283), ('test_registry_feada6f9_data/test_284.csv', 284), ('test_registry_feada6f9_data/test_285.csv', 285), ('test_registry_feada6f9_data/test_286.csv', 286), ('test_registry_feada6f9_data/test_287.csv', 287), ('test_registry_feada6f9_data/test_288.csv', 288), ('test_registry_feada6f9_data/test_289.csv', 289), ('test_registry_feada6f9_data/test_29.csv', 29), ('test_registry_feada6f9_data/test_290.csv', 290), ('test_registry_feada6f9_data/test_291.csv', 291), ('test_registry_feada6f9_data/test_292.csv', 292), ('test_registry_feada6f9_data/test_293.csv', 293), ('test_registry_feada6f9_data/test_294.csv', 294), ('test_registry_feada6f9_data/test_295.csv', 295), ('test_registry_feada6f9_data/test_296.csv', 296), ('test_registry_feada6f9_data/test_297.csv', 297), ('test_registry_feada6f9_data/test_298.csv', 298), ('test_registry_feada6f9_data/test_299.csv', 299), ('test_registry_feada6f9_data/test_3.csv', 3), ('test_registry_feada6f9_data/test_30.csv', 30), ('test_registry_feada6f9_data/test_300.csv', 300), ('test_registry_feada6f9_data/test_301.csv', 301), ('test_registry_feada6f9_data/test_302.csv', 302), ('test_registry_feada6f9_data/test_303.csv', 303), ('test_registry_feada6f9_data/test_304.csv', 304), ('test_registry_feada6f9_data/test_305.csv', 305), ('test_registry_feada6f9_data/test_306.csv', 306), ('test_registry_feada6f9_data/test_307.csv', 307), ('test_registry_feada6f9_data/test_308.csv', 308), ('test_registry_feada6f9_data/test_309.csv', 309), ('test_registry_feada6f9_data/test_31.csv', 31), ('test_registry_feada6f9_data/test_310.csv', 310), ('test_registry_feada6f9_data/test_311.csv', 311), ('test_registry_feada6f9_data/test_312.csv', 312), ('test_registry_feada6f9_data/test_313.csv', 313), ('test_registry_feada6f9_data/test_314.csv', 314), ('test_registry_feada6f9_data/test_315.csv', 315), ('test_registry_feada6f9_data/test_316.csv', 316), ('test_registry_feada6f9_data/test_317.csv', 317), ('test_registry_feada6f9_data/test_318.csv', 318), ('test_registry_feada6f9_data/test_319.csv', 319), ('test_registry_feada6f9_data/test_32.csv', 32), ('test_registry_feada6f9_data/test_320.csv', 320), ('test_registry_feada6f9_data/test_321.csv', 321), ('test_registry_feada6f9_data/test_322.csv', 322), ('test_registry_feada6f9_data/test_323.csv', 323), ('test_registry_feada6f9_data/test_324.csv', 324), ('test_registry_feada6f9_data/test_325.csv', 325), ('test_registry_feada6f9_data/test_326.csv', 326), ('test_registry_feada6f9_data/test_327.csv', 327), ('test_registry_feada6f9_data/test_328.csv', 328), ('test_registry_feada6f9_data/test_329.csv', 329), ('test_registry_feada6f9_data/test_33.csv', 33), ('test_registry_feada6f9_data/test_330.csv', 330), ('test_registry_feada6f9_data/test_331.csv', 331), ('test_registry_feada6f9_data/test_332.csv', 332), ('test_registry_feada6f9_data/test_333.csv', 333), ('test_registry_feada6f9_data/test_334.csv', 334), ('test_registry_feada6f9_data/test_335.csv', 335), ('test_registry_feada6f9_data/test_336.csv', 336), ('test_registry_feada6f9_data/test_337.csv', 337), ('test_registry_feada6f9_data/test_338.csv', 338), ('test_registry_feada6f9_data/test_339.csv', 339), ('test_registry_feada6f9_data/test_34.csv', 34), ('test_registry_feada6f9_data/test_340.csv', 340), ('test_registry_feada6f9_data/test_341.csv', 341), ('test_registry_feada6f9_data/test_342.csv', 342), ('test_registry_feada6f9_data/test_343.csv', 343), ('test_registry_feada6f9_data/test_344.csv', 344), ('test_registry_feada6f9_data/test_345.csv', 345), ('test_registry_feada6f9_data/test_346.csv', 346), ('test_registry_feada6f9_data/test_347.csv', 347), ('test_registry_feada6f9_data/test_348.csv', 348), ('test_registry_feada6f9_data/test_349.csv', 349), ('test_registry_feada6f9_data/test_35.csv', 35), ('test_registry_feada6f9_data/test_350.csv', 350), ('test_registry_feada6f9_data/test_351.csv', 351), ('test_registry_feada6f9_data/test_352.csv', 352), ('test_registry_feada6f9_data/test_353.csv', 353), ('test_registry_feada6f9_data/test_354.csv', 354), ('test_registry_feada6f9_data/test_355.csv', 355), ('test_registry_feada6f9_data/test_356.csv', 356), ('test_registry_feada6f9_data/test_357.csv', 357), ('test_registry_feada6f9_data/test_358.csv', 358), ('test_registry_feada6f9_data/test_359.csv', 359), ('test_registry_feada6f9_data/test_36.csv', 36), ('test_registry_feada6f9_data/test_360.csv', 360), ('test_registry_feada6f9_data/test_361.csv', 361), ('test_registry_feada6f9_data/test_362.csv', 362), ('test_registry_feada6f9_data/test_363.csv', 363), ('test_registry_feada6f9_data/test_364.csv', 364), ('test_registry_feada6f9_data/test_365.csv', 365), ('test_registry_feada6f9_data/test_366.csv', 366), ('test_registry_feada6f9_data/test_367.csv', 367), ('test_registry_feada6f9_data/test_368.csv', 368), ('test_registry_feada6f9_data/test_369.csv', 369), ('test_registry_feada6f9_data/test_37.csv', 37), ('test_registry_feada6f9_data/test_370.csv', 370), ('test_registry_feada6f9_data/test_371.csv', 371), ('test_registry_feada6f9_data/test_372.csv', 372), ('test_registry_feada6f9_data/test_373.csv', 373), ('test_registry_feada6f9_data/test_374.csv', 374), ('test_registry_feada6f9_data/test_375.csv', 375), ('test_registry_feada6f9_data/test_376.csv', 376), ('test_registry_feada6f9_data/test_377.csv', 377), ('test_registry_feada6f9_data/test_378.csv', 378), ('test_registry_feada6f9_data/test_379.csv', 379), ('test_registry_feada6f9_data/test_38.csv', 38), ('test_registry_feada6f9_data/test_380.csv', 380), ('test_registry_feada6f9_data/test_381.csv', 381), ('test_registry_feada6f9_data/test_382.csv', 382), ('test_registry_feada6f9_data/test_383.csv', 383), ('test_registry_feada6f9_data/test_384.csv', 384), ('test_registry_feada6f9_data/test_385.csv', 385), ('test_registry_feada6f9_data/test_386.csv', 386), ('test_registry_feada6f9_data/test_387.csv', 387), ('test_registry_feada6f9_data/test_388.csv', 388), ('test_registry_feada6f9_data/test_389.csv', 389), ('test_registry_feada6f9_data/test_39.csv', 39), ('test_registry_feada6f9_data/test_390.csv', 390), ('test_registry_feada6f9_data/test_391.csv', 391), ('test_registry_feada6f9_data/test_392.csv', 392), ('test_registry_feada6f9_data/test_393.csv', 393), ('test_registry_feada6f9_data/test_394.csv', 394), ('test_registry_feada6f9_data/test_395.csv', 395), ('test_registry_feada6f9_data/test_396.csv', 396), ('test_registry_feada6f9_data/test_397.csv', 397), ('test_registry_feada6f9_data/test_398.csv', 398), ('test_registry_feada6f9_data/test_399.csv', 399), ('test_registry_feada6f9_data/test_4.csv', 4), ('test_registry_feada6f9_data/test_40.csv', 40), ('test_registry_feada6f9_data/test_400.csv', 400), ('test_registry_feada6f9_data/test_401.csv', 401), ('test_registry_feada6f9_data/test_402.csv', 402), ('test_registry_feada6f9_data/test_403.csv', 403), ('test_registry_feada6f9_data/test_404.csv', 404), ('test_registry_feada6f9_data/test_405.csv', 405), ('test_registry_feada6f9_data/test_406.csv', 406), ('test_registry_feada6f9_data/test_407.csv', 407), ('test_registry_feada6f9_data/test_408.csv', 408), ('test_registry_feada6f9_data/test_409.csv', 409), ('test_registry_feada6f9_data/test_41.csv', 41), ('test_registry_feada6f9_data/test_410.csv', 410), ('test_registry_feada6f9_data/test_411.csv', 411), ('test_registry_feada6f9_data/test_412.csv', 412), ('test_registry_feada6f9_data/test_413.csv', 413), ('test_registry_feada6f9_data/test_414.csv', 414), ('test_registry_feada6f9_data/test_415.csv', 415), ('test_registry_feada6f9_data/test_416.csv', 416), ('test_registry_feada6f9_data/test_417.csv', 417), ('test_registry_feada6f9_data/test_418.csv', 418), ('test_registry_feada6f9_data/test_419.csv', 419), ('test_registry_feada6f9_data/test_42.csv', 42), ('test_registry_feada6f9_data/test_420.csv', 420), ('test_registry_feada6f9_data/test_421.csv', 421), ('test_registry_feada6f9_data/test_422.csv', 422), ('test_registry_feada6f9_data/test_423.csv', 423), ('test_registry_feada6f9_data/test_424.csv', 424), ('test_registry_feada6f9_data/test_425.csv', 425), ('test_registry_feada6f9_data/test_426.csv', 426), ('test_registry_feada6f9_data/test_427.csv', 427), ('test_registry_feada6f9_data/test_428.csv', 428), ('test_registry_feada6f9_data/test_429.csv', 429), ('test_registry_feada6f9_data/test_43.csv', 43), ('test_registry_feada6f9_data/test_430.csv', 430), ('test_registry_feada6f9_data/test_431.csv', 431), ('test_registry_feada6f9_data/test_432.csv', 432), ('test_registry_feada6f9_data/test_433.csv', 433), ('test_registry_feada6f9_data/test_434.csv', 434), ('test_registry_feada6f9_data/test_435.csv', 435), ('test_registry_feada6f9_data/test_436.csv', 436), ('test_registry_feada6f9_data/test_437.csv', 437), ('test_registry_feada6f9_data/test_438.csv', 438), ('test_registry_feada6f9_data/test_439.csv', 439), ('test_registry_feada6f9_data/test_44.csv', 44), ('test_registry_feada6f9_data/test_440.csv', 440), ('test_registry_feada6f9_data/test_441.csv', 441), ('test_registry_feada6f9_data/test_442.csv', 442), ('test_registry_feada6f9_data/test_443.csv', 443), ('test_registry_feada6f9_data/test_444.csv', 444), ('test_registry_feada6f9_data/test_445.csv', 445), ('test_registry_feada6f9_data/test_446.csv', 446), ('test_registry_feada6f9_data/test_447.csv', 447), ('test_registry_feada6f9_data/test_448.csv', 448), ('test_registry_feada6f9_data/test_449.csv', 449), ('test_registry_feada6f9_data/test_45.csv', 45), ('test_registry_feada6f9_data/test_450.csv', 450), ('test_registry_feada6f9_data/test_451.csv', 451), ('test_registry_feada6f9_data/test_452.csv', 452), ('test_registry_feada6f9_data/test_453.csv', 453), ('test_registry_feada6f9_data/test_454.csv', 454), ('test_registry_feada6f9_data/test_455.csv', 455), ('test_registry_feada6f9_data/test_456.csv', 456), ('test_registry_feada6f9_data/test_457.csv', 457), ('test_registry_feada6f9_data/test_458.csv', 458), ('test_registry_feada6f9_data/test_459.csv', 459), ('test_registry_feada6f9_data/test_46.csv', 46), ('test_registry_feada6f9_data/test_460.csv', 460), ('test_registry_feada6f9_data/test_461.csv', 461), ('test_registry_feada6f9_data/test_462.csv', 462), ('test_registry_feada6f9_data/test_463.csv', 463), ('test_registry_feada6f9_data/test_464.csv', 464), ('test_registry_feada6f9_data/test_465.csv', 465), ('test_registry_feada6f9_data/test_466.csv', 466), ('test_registry_feada6f9_data/test_467.csv', 467), ('test_registry_feada6f9_data/test_468.csv', 468), ('test_registry_feada6f9_data/test_469.csv', 469), ('test_registry_feada6f9_data/test_47.csv', 47), ('test_registry_feada6f9_data/test_470.csv', 470), ('test_registry_feada6f9_data/test_471.csv', 471), ('test_registry_feada6f9_data/test_472.csv', 472), ('test_registry_feada6f9_data/test_473.csv', 473), ('test_registry_feada6f9_data/test_474.csv', 474), ('test_registry_feada6f9_data/test_475.csv', 475), ('test_registry_feada6f9_data/test_476.csv', 476), ('test_registry_feada6f9_data/test_477.csv', 477), ('test_registry_feada6f9_data/test_478.csv', 478), ('test_registry_feada6f9_data/test_479.csv', 479), ('test_registry_feada6f9_data/test_48.csv', 48), ('test_registry_feada6f9_data/test_480.csv', 480), ('test_registry_feada6f9_data/test_481.csv', 481), ('test_registry_feada6f9_data/test_482.csv', 482), ('test_registry_feada6f9_data/test_483.csv', 483), ('test_registry_feada6f9_data/test_484.csv', 484), ('test_registry_feada6f9_data/test_485.csv', 485), ('test_registry_feada6f9_data/test_486.csv', 486), ('test_registry_feada6f9_data/test_487.csv', 487), ('test_registry_feada6f9_data/test_488.csv', 488), ('test_registry_feada6f9_data/test_489.csv', 489), ('test_registry_feada6f9_data/test_49.csv', 49), ('test_registry_feada6f9_data/test_490.csv', 490), ('test_registry_feada6f9_data/test_491.csv', 491), ('test_registry_feada6f9_data/test_492.csv', 492), ('test_registry_feada6f9_data/test_493.csv', 493), ('test_registry_feada6f9_data/test_494.csv', 494), ('test_registry_feada6f9_data/test_495.csv', 495), ('test_registry_feada6f9_data/test_496.csv', 496), ('test_registry_feada6f9_data/test_497.csv', 497), ('test_registry_feada6f9_data/test_498.csv', 498), ('test_registry_feada6f9_data/test_499.csv', 499), ('test_registry_feada6f9_data/test_5.csv', 5), ('test_registry_feada6f9_data/test_50.csv', 50), ('test_registry_feada6f9_data/test_500.csv', 500), ('test_registry_feada6f9_data/test_501.csv', 501), ('test_registry_feada6f9_data/test_502.csv', 502), ('test_registry_feada6f9_data/test_503.csv', 503), ('test_registry_feada6f9_data/test_504.csv', 504), ('test_registry_feada6f9_data/test_505.csv', 505), ('test_registry_feada6f9_data/test_506.csv', 506), ('test_registry_feada6f9_data/test_507.csv', 507), ('test_registry_feada6f9_data/test_508.csv', 508), ('test_registry_feada6f9_data/test_509.csv', 509), ('test_registry_feada6f9_data/test_51.csv', 51), ('test_registry_feada6f9_data/test_510.csv', 510), ('test_registry_feada6f9_data/test_511.csv', 511), ('test_registry_feada6f9_data/test_512.csv', 512), ('test_registry_feada6f9_data/test_513.csv', 513), ('test_registry_feada6f9_data/test_514.csv', 514), ('test_registry_feada6f9_data/test_515.csv', 515), ('test_registry_feada6f9_data/test_516.csv', 516), ('test_registry_feada6f9_data/test_517.csv', 517), ('test_registry_feada6f9_data/test_518.csv', 518), ('test_registry_feada6f9_data/test_519.csv', 519), ('test_registry_feada6f9_data/test_52.csv', 52), ('test_registry_feada6f9_data/test_520.csv', 520), ('test_registry_feada6f9_data/test_521.csv', 521), ('test_registry_feada6f9_data/test_522.csv', 522), ('test_registry_feada6f9_data/test_523.csv', 523), ('test_registry_feada6f9_data/test_524.csv', 524), ('test_registry_feada6f9_data/test_525.csv', 525), ('test_registry_feada6f9_data/test_526.csv', 526), ('test_registry_feada6f9_data/test_527.csv', 527), ('test_registry_feada6f9_data/test_528.csv', 528), ('test_registry_feada6f9_data/test_529.csv', 529), ('test_registry_feada6f9_data/test_53.csv', 53), ('test_registry_feada6f9_data/test_530.csv', 530), ('test_registry_feada6f9_data/test_531.csv', 531), ('test_registry_feada6f9_data/test_532.csv', 532), ('test_registry_feada6f9_data/test_533.csv', 533), ('test_registry_feada6f9_data/test_534.csv', 534), ('test_registry_feada6f9_data/test_535.csv', 535), ('test_registry_feada6f9_data/test_536.csv', 536), ('test_registry_feada6f9_data/test_537.csv', 537), ('test_registry_feada6f9_data/test_538.csv', 538), ('test_registry_feada6f9_data/test_539.csv', 539), ('test_registry_feada6f9_data/test_54.csv', 54), ('test_registry_feada6f9_data/test_540.csv', 540), ('test_registry_feada6f9_data/test_541.csv', 541), ('test_registry_feada6f9_data/test_542.csv', 542), ('test_registry_feada6f9_data/test_543.csv', 543), ('test_registry_feada6f9_data/test_544.csv', 544), ('test_registry_feada6f9_data/test_545.csv', 545), ('test_registry_feada6f9_data/test_546.csv', 546), ('test_registry_feada6f9_data/test_547.csv', 547), ('test_registry_feada6f9_data/test_548.csv', 548), ('test_registry_feada6f9_data/test_549.csv', 549), ('test_registry_feada6f9_data/test_55.csv', 55), ('test_registry_feada6f9_data/test_550.csv', 550), ('test_registry_feada6f9_data/test_551.csv', 551), ('test_registry_feada6f9_data/test_552.csv', 552), ('test_registry_feada6f9_data/test_553.csv', 553), ('test_registry_feada6f9_data/test_554.csv', 554), ('test_registry_feada6f9_data/test_555.csv', 555), ('test_registry_feada6f9_data/test_556.csv', 556), ('test_registry_feada6f9_data/test_557.csv', 557), ('test_registry_feada6f9_data/test_558.csv', 558), ('test_registry_feada6f9_data/test_559.csv', 559), ('test_registry_feada6f9_data/test_56.csv', 56), ('test_registry_feada6f9_data/test_560.csv', 560), ('test_registry_feada6f9_data/test_561.csv', 561), ('test_registry_feada6f9_data/test_562.csv', 562), ('test_registry_feada6f9_data/test_563.csv', 563), ('test_registry_feada6f9_data/test_564.csv', 564), ('test_registry_feada6f9_data/test_565.csv', 565), ('test_registry_feada6f9_data/test_566.csv', 566), ('test_registry_feada6f9_data/test_567.csv', 567), ('test_registry_feada6f9_data/test_568.csv', 568), ('test_registry_feada6f9_data/test_569.csv', 569), ('test_registry_feada6f9_data/test_57.csv', 57), ('test_registry_feada6f9_data/test_570.csv', 570), ('test_registry_feada6f9_data/test_571.csv', 571), ('test_registry_feada6f9_data/test_572.csv', 572), ('test_registry_feada6f9_data/test_573.csv', 573), ('test_registry_feada6f9_data/test_574.csv', 574), ('test_registry_feada6f9_data/test_575.csv', 575), ('test_registry_feada6f9_data/test_576.csv', 576), ('test_registry_feada6f9_data/test_577.csv', 577), ('test_registry_feada6f9_data/test_578.csv', 578), ('test_registry_feada6f9_data/test_579.csv', 579), ('test_registry_feada6f9_data/test_58.csv', 58), ('test_registry_feada6f9_data/test_580.csv', 580), ('test_registry_feada6f9_data/test_581.csv', 581), ('test_registry_feada6f9_data/test_582.csv', 582), ('test_registry_feada6f9_data/test_583.csv', 583), ('test_registry_feada6f9_data/test_584.csv', 584), ('test_registry_feada6f9_data/test_585.csv', 585), ('test_registry_feada6f9_data/test_586.csv', 586), ('test_registry_feada6f9_data/test_587.csv', 587), ('test_registry_feada6f9_data/test_588.csv', 588), ('test_registry_feada6f9_data/test_589.csv', 589), ('test_registry_feada6f9_data/test_59.csv', 59), ('test_registry_feada6f9_data/test_590.csv', 590), ('test_registry_feada6f9_data/test_591.csv', 591), ('test_registry_feada6f9_data/test_592.csv', 592), ('test_registry_feada6f9_data/test_593.csv', 593), ('test_registry_feada6f9_data/test_594.csv', 594), ('test_registry_feada6f9_data/test_595.csv', 595), ('test_registry_feada6f9_data/test_596.csv', 596), ('test_registry_feada6f9_data/test_597.csv', 597), ('test_registry_feada6f9_data/test_598.csv', 598), ('test_registry_feada6f9_data/test_599.csv', 599), ('test_registry_feada6f9_data/test_6.csv', 6), ('test_registry_feada6f9_data/test_60.csv', 60), ('test_registry_feada6f9_data/test_600.csv', 600), ('test_registry_feada6f9_data/test_601.csv', 601), ('test_registry_feada6f9_data/test_602.csv', 602), ('test_registry_feada6f9_data/test_603.csv', 603), ('test_registry_feada6f9_data/test_604.csv', 604), ('test_registry_feada6f9_data/test_605.csv', 605), ('test_registry_feada6f9_data/test_606.csv', 606), ('test_registry_feada6f9_data/test_607.csv', 607), ('test_registry_feada6f9_data/test_608.csv', 608), ('test_registry_feada6f9_data/test_609.csv', 609), ('test_registry_feada6f9_data/test_61.csv', 61), ('test_registry_feada6f9_data/test_610.csv', 610), ('test_registry_feada6f9_data/test_611.csv', 611), ('test_registry_feada6f9_data/test_612.csv', 612), ('test_registry_feada6f9_data/test_613.csv', 613), ('test_registry_feada6f9_data/test_614.csv', 614), ('test_registry_feada6f9_data/test_615.csv', 615), ('test_registry_feada6f9_data/test_616.csv', 616), ('test_registry_feada6f9_data/test_617.csv', 617), ('test_registry_feada6f9_data/test_618.csv', 618), ('test_registry_feada6f9_data/test_619.csv', 619), ('test_registry_feada6f9_data/test_62.csv', 62), ('test_registry_feada6f9_data/test_620.csv', 620), ('test_registry_feada6f9_data/test_621.csv', 621), ('test_registry_feada6f9_data/test_622.csv', 622), ('test_registry_feada6f9_data/test_623.csv', 623), ('test_registry_feada6f9_data/test_624.csv', 624), ('test_registry_feada6f9_data/test_625.csv', 625), ('test_registry_feada6f9_data/test_626.csv', 626), ('test_registry_feada6f9_data/test_627.csv', 627), ('test_registry_feada6f9_data/test_628.csv', 628), ('test_registry_feada6f9_data/test_629.csv', 629), ('test_registry_feada6f9_data/test_63.csv', 63), ('test_registry_feada6f9_data/test_630.csv', 630), ('test_registry_feada6f9_data/test_631.csv', 631), ('test_registry_feada6f9_data/test_632.csv', 632), ('test_registry_feada6f9_data/test_633.csv', 633), ('test_registry_feada6f9_data/test_634.csv', 634), ('test_registry_feada6f9_data/test_635.csv', 635), ('test_registry_feada6f9_data/test_636.csv', 636), ('test_registry_feada6f9_data/test_637.csv', 637), ('test_registry_feada6f9_data/test_638.csv', 638), ('test_registry_feada6f9_data/test_639.csv', 639), ('test_registry_feada6f9_data/test_64.csv', 64), ('test_registry_feada6f9_data/test_640.csv', 640), ('test_registry_feada6f9_data/test_641.csv', 641), ('test_registry_feada6f9_data/test_642.csv', 642), ('test_registry_feada6f9_data/test_643.csv', 643), ('test_registry_feada6f9_data/test_644.csv', 644), ('test_registry_feada6f9_data/test_645.csv', 645), ('test_registry_feada6f9_data/test_646.csv', 646), ('test_registry_feada6f9_data/test_647.csv', 647), ('test_registry_feada6f9_data/test_648.csv', 648), ('test_registry_feada6f9_data/test_649.csv', 649), ('test_registry_feada6f9_data/test_65.csv', 65), ('test_registry_feada6f9_data/test_650.csv', 650), ('test_registry_feada6f9_data/test_651.csv', 651), ('test_registry_feada6f9_data/test_652.csv', 652), ('test_registry_feada6f9_data/test_653.csv', 653), ('test_registry_feada6f9_data/test_654.csv', 654), ('test_registry_feada6f9_data/test_655.csv', 655), ('test_registry_feada6f9_data/test_656.csv', 656), ('test_registry_feada6f9_data/test_657.csv', 657), ('test_registry_feada6f9_data/test_658.csv', 658), ('test_registry_feada6f9_data/test_659.csv', 659), ('test_registry_feada6f9_data/test_66.csv', 66), ('test_registry_feada6f9_data/test_660.csv', 660), ('test_registry_feada6f9_data/test_661.csv', 661), ('test_registry_feada6f9_data/test_662.csv', 662), ('test_registry_feada6f9_data/test_663.csv', 663), ('test_registry_feada6f9_data/test_664.csv', 664), ('test_registry_feada6f9_data/test_665.csv', 665), ('test_registry_feada6f9_data/test_666.csv', 666), ('test_registry_feada6f9_data/test_667.csv', 667), ('test_registry_feada6f9_data/test_668.csv', 668), ('test_registry_feada6f9_data/test_669.csv', 669), ('test_registry_feada6f9_data/test_67.csv', 67), ('test_registry_feada6f9_data/test_670.csv', 670), ('test_registry_feada6f9_data/test_671.csv', 671), ('test_registry_feada6f9_data/test_672.csv', 672), ('test_registry_feada6f9_data/test_673.csv', 673), ('test_registry_feada6f9_data/test_674.csv', 674), ('test_registry_feada6f9_data/test_675.csv', 675), ('test_registry_feada6f9_data/test_676.csv', 676), ('test_registry_feada6f9_data/test_677.csv', 677), ('test_registry_feada6f9_data/test_678.csv', 678), ('test_registry_feada6f9_data/test_679.csv', 679), ('test_registry_feada6f9_data/test_68.csv', 68), ('test_registry_feada6f9_data/test_680.csv', 680), ('test_registry_feada6f9_data/test_681.csv', 681), ('test_registry_feada6f9_data/test_682.csv', 682), ('test_registry_feada6f9_data/test_683.csv', 683), ('test_registry_feada6f9_data/test_684.csv', 684), ('test_registry_feada6f9_data/test_685.csv', 685), ('test_registry_feada6f9_data/test_686.csv', 686), ('test_registry_feada6f9_data/test_687.csv', 687), ('test_registry_feada6f9_data/test_688.csv', 688), ('test_registry_feada6f9_data/test_689.csv', 689), ('test_registry_feada6f9_data/test_69.csv', 69), ('test_registry_feada6f9_data/test_690.csv', 690), ('test_registry_feada6f9_data/test_691.csv', 691), ('test_registry_feada6f9_data/test_692.csv', 692), ('test_registry_feada6f9_data/test_693.csv', 693), ('test_registry_feada6f9_data/test_694.csv', 694), ('test_registry_feada6f9_data/test_695.csv', 695), ('test_registry_feada6f9_data/test_696.csv', 696), ('test_registry_feada6f9_data/test_697.csv', 697), ('test_registry_feada6f9_data/test_698.csv', 698), ('test_registry_feada6f9_data/test_699.csv', 699), ('test_registry_feada6f9_data/test_7.csv', 7), ('test_registry_feada6f9_data/test_70.csv', 70), ('test_registry_feada6f9_data/test_700.csv', 700), ('test_registry_feada6f9_data/test_701.csv', 701), ('test_registry_feada6f9_data/test_702.csv', 702), ('test_registry_feada6f9_data/test_703.csv', 703), ('test_registry_feada6f9_data/test_704.csv', 704), ('test_registry_feada6f9_data/test_705.csv', 705), ('test_registry_feada6f9_data/test_706.csv', 706), ('test_registry_feada6f9_data/test_707.csv', 707), ('test_registry_feada6f9_data/test_708.csv', 708), ('test_registry_feada6f9_data/test_709.csv', 709), ('test_registry_feada6f9_data/test_71.csv', 71), ('test_registry_feada6f9_data/test_710.csv', 710), ('test_registry_feada6f9_data/test_711.csv', 711), ('test_registry_feada6f9_data/test_712.csv', 712), ('test_registry_feada6f9_data/test_713.csv', 713), ('test_registry_feada6f9_data/test_714.csv', 714), ('test_registry_feada6f9_data/test_715.csv', 715), ('test_registry_feada6f9_data/test_716.csv', 716), ('test_registry_feada6f9_data/test_717.csv', 717), ('test_registry_feada6f9_data/test_718.csv', 718), ('test_registry_feada6f9_data/test_719.csv', 719), ('test_registry_feada6f9_data/test_72.csv', 72), ('test_registry_feada6f9_data/test_720.csv', 720), ('test_registry_feada6f9_data/test_721.csv', 721), ('test_registry_feada6f9_data/test_722.csv', 722), ('test_registry_feada6f9_data/test_723.csv', 723), ('test_registry_feada6f9_data/test_724.csv', 724), ('test_registry_feada6f9_data/test_725.csv', 725), ('test_registry_feada6f9_data/test_726.csv', 726), ('test_registry_feada6f9_data/test_727.csv', 727), ('test_registry_feada6f9_data/test_728.csv', 728), ('test_registry_feada6f9_data/test_729.csv', 729), ('test_registry_feada6f9_data/test_73.csv', 73), ('test_registry_feada6f9_data/test_730.csv', 730), ('test_registry_feada6f9_data/test_731.csv', 731), ('test_registry_feada6f9_data/test_732.csv', 732), ('test_registry_feada6f9_data/test_733.csv', 733), ('test_registry_feada6f9_data/test_734.csv', 734), ('test_registry_feada6f9_data/test_735.csv', 735), ('test_registry_feada6f9_data/test_736.csv', 736), ('test_registry_feada6f9_data/test_737.csv', 737), ('test_registry_feada6f9_data/test_738.csv', 738), ('test_registry_feada6f9_data/test_739.csv', 739), ('test_registry_feada6f9_data/test_74.csv', 74), ('test_registry_feada6f9_data/test_740.csv', 740), ('test_registry_feada6f9_data/test_741.csv', 741), ('test_registry_feada6f9_data/test_742.csv', 742), ('test_registry_feada6f9_data/test_743.csv', 743), ('test_registry_feada6f9_data/test_744.csv', 744), ('test_registry_feada6f9_data/test_745.csv', 745), ('test_registry_feada6f9_data/test_746.csv', 746), ('test_registry_feada6f9_data/test_747.csv', 747), ('test_registry_feada6f9_data/test_748.csv', 748), ('test_registry_feada6f9_data/test_749.csv', 749), ('test_registry_feada6f9_data/test_75.csv', 75), ('test_registry_feada6f9_data/test_750.csv', 750), ('test_registry_feada6f9_data/test_751.csv', 751), ('test_registry_feada6f9_data/test_752.csv', 752), ('test_registry_feada6f9_data/test_753.csv', 753), ('test_registry_feada6f9_data/test_754.csv', 754), ('test_registry_feada6f9_data/test_755.csv', 755), ('test_registry_feada6f9_data/test_756.csv', 756), ('test_registry_feada6f9_data/test_757.csv', 757), ('test_registry_feada6f9_data/test_758.csv', 758), ('test_registry_feada6f9_data/test_759.csv', 759), ('test_registry_feada6f9_data/test_76.csv', 76), ('test_registry_feada6f9_data/test_760.csv', 760), ('test_registry_feada6f9_data/test_761.csv', 761), ('test_registry_feada6f9_data/test_762.csv', 762), ('test_registry_feada6f9_data/test_763.csv', 763), ('test_registry_feada6f9_data/test_764.csv', 764), ('test_registry_feada6f9_data/test_765.csv', 765), ('test_registry_feada6f9_data/test_766.csv', 766), ('test_registry_feada6f9_data/test_767.csv', 767), ('test_registry_feada6f9_data/test_768.csv', 768), ('test_registry_feada6f9_data/test_769.csv', 769), ('test_registry_feada6f9_data/test_77.csv', 77), ('test_registry_feada6f9_data/test_770.csv', 770), ('test_registry_feada6f9_data/test_771.csv', 771), ('test_registry_feada6f9_data/test_772.csv', 772), ('test_registry_feada6f9_data/test_773.csv', 773), ('test_registry_feada6f9_data/test_774.csv', 774), ('test_registry_feada6f9_data/test_775.csv', 775), ('test_registry_feada6f9_data/test_776.csv', 776), ('test_registry_feada6f9_data/test_777.csv', 777), ('test_registry_feada6f9_data/test_778.csv', 778), ('test_registry_feada6f9_data/test_779.csv', 779), ('test_registry_feada6f9_data/test_78.csv', 78), ('test_registry_feada6f9_data/test_780.csv', 780), ('test_registry_feada6f9_data/test_781.csv', 781), ('test_registry_feada6f9_data/test_782.csv', 782), ('test_registry_feada6f9_data/test_783.csv', 783), ('test_registry_feada6f9_data/test_784.csv', 784), ('test_registry_feada6f9_data/test_785.csv', 785), ('test_registry_feada6f9_data/test_786.csv', 786), ('test_registry_feada6f9_data/test_787.csv', 787), ('test_registry_feada6f9_data/test_788.csv', 788), ('test_registry_feada6f9_data/test_789.csv', 789), ('test_registry_feada6f9_data/test_79.csv', 79), ('test_registry_feada6f9_data/test_790.csv', 790), ('test_registry_feada6f9_data/test_791.csv', 791), ('test_registry_feada6f9_data/test_792.csv', 792), ('test_registry_feada6f9_data/test_793.csv', 793), ('test_registry_feada6f9_data/test_794.csv', 794), ('test_registry_feada6f9_data/test_795.csv', 795), ('test_registry_feada6f9_data/test_796.csv', 796), ('test_registry_feada6f9_data/test_797.csv', 797), ('test_registry_feada6f9_data/test_798.csv', 798), ('test_registry_feada6f9_data/test_799.csv', 799), ('test_registry_feada6f9_data/test_8.csv', 8), ('test_registry_feada6f9_data/test_80.csv', 80), ('test_registry_feada6f9_data/test_800.csv', 800), ('test_registry_feada6f9_data/test_801.csv', 801), ('test_registry_feada6f9_data/test_802.csv', 802), ('test_registry_feada6f9_data/test_803.csv', 803), ('test_registry_feada6f9_data/test_804.csv', 804), ('test_registry_feada6f9_data/test_805.csv', 805), ('test_registry_feada6f9_data/test_806.csv', 806), ('test_registry_feada6f9_data/test_807.csv', 807), ('test_registry_feada6f9_data/test_808.csv', 808), ('test_registry_feada6f9_data/test_809.csv', 809), ('test_registry_feada6f9_data/test_81.csv', 81), ('test_registry_feada6f9_data/test_810.csv', 810), ('test_registry_feada6f9_data/test_811.csv', 811), ('test_registry_feada6f9_data/test_812.csv', 812), ('test_registry_feada6f9_data/test_813.csv', 813), ('test_registry_feada6f9_data/test_814.csv', 814), ('test_registry_feada6f9_data/test_815.csv', 815), ('test_registry_feada6f9_data/test_816.csv', 816), ('test_registry_feada6f9_data/test_817.csv', 817), ('test_registry_feada6f9_data/test_818.csv', 818), ('test_registry_feada6f9_data/test_819.csv', 819), ('test_registry_feada6f9_data/test_82.csv', 82), ('test_registry_feada6f9_data/test_820.csv', 820), ('test_registry_feada6f9_data/test_821.csv', 821), ('test_registry_feada6f9_data/test_822.csv', 822), ('test_registry_feada6f9_data/test_823.csv', 823), ('test_registry_feada6f9_data/test_824.csv', 824), ('test_registry_feada6f9_data/test_825.csv', 825), ('test_registry_feada6f9_data/test_826.csv', 826), ('test_registry_feada6f9_data/test_827.csv', 827), ('test_registry_feada6f9_data/test_828.csv', 828), ('test_registry_feada6f9_data/test_829.csv', 829), ('test_registry_feada6f9_data/test_83.csv', 83), ('test_registry_feada6f9_data/test_830.csv', 830), ('test_registry_feada6f9_data/test_831.csv', 831), ('test_registry_feada6f9_data/test_832.csv', 832), ('test_registry_feada6f9_data/test_833.csv', 833), ('test_registry_feada6f9_data/test_834.csv', 834), ('test_registry_feada6f9_data/test_835.csv', 835), ('test_registry_feada6f9_data/test_836.csv', 836), ('test_registry_feada6f9_data/test_837.csv', 837), ('test_registry_feada6f9_data/test_838.csv', 838), ('test_registry_feada6f9_data/test_839.csv', 839), ('test_registry_feada6f9_data/test_84.csv', 84), ('test_registry_feada6f9_data/test_840.csv', 840), ('test_registry_feada6f9_data/test_841.csv', 841), ('test_registry_feada6f9_data/test_842.csv', 842), ('test_registry_feada6f9_data/test_843.csv', 843), ('test_registry_feada6f9_data/test_844.csv', 844), ('test_registry_feada6f9_data/test_845.csv', 845), ('test_registry_feada6f9_data/test_846.csv', 846), ('test_registry_feada6f9_data/test_847.csv', 847), ('test_registry_feada6f9_data/test_848.csv', 848), ('test_registry_feada6f9_data/test_849.csv', 849), ('test_registry_feada6f9_data/test_85.csv', 85), ('test_registry_feada6f9_data/test_850.csv', 850), ('test_registry_feada6f9_data/test_851.csv', 851), ('test_registry_feada6f9_data/test_852.csv', 852), ('test_registry_feada6f9_data/test_853.csv', 853), ('test_registry_feada6f9_data/test_854.csv', 854), ('test_registry_feada6f9_data/test_855.csv', 855), ('test_registry_feada6f9_data/test_856.csv', 856), ('test_registry_feada6f9_data/test_857.csv', 857), ('test_registry_feada6f9_data/test_858.csv', 858), ('test_registry_feada6f9_data/test_859.csv', 859), ('test_registry_feada6f9_data/test_86.csv', 86), ('test_registry_feada6f9_data/test_860.csv', 860), ('test_registry_feada6f9_data/test_861.csv', 861), ('test_registry_feada6f9_data/test_862.csv', 862), ('test_registry_feada6f9_data/test_863.csv', 863), ('test_registry_feada6f9_data/test_864.csv', 864), ('test_registry_feada6f9_data/test_865.csv', 865), ('test_registry_feada6f9_data/test_866.csv', 866), ('test_registry_feada6f9_data/test_867.csv', 867), ('test_registry_feada6f9_data/test_868.csv', 868), ('test_registry_feada6f9_data/test_869.csv', 869), ('test_registry_feada6f9_data/test_87.csv', 87), ('test_registry_feada6f9_data/test_870.csv', 870), ('test_registry_feada6f9_data/test_871.csv', 871), ('test_registry_feada6f9_data/test_872.csv', 872), ('test_registry_feada6f9_data/test_873.csv', 873), ('test_registry_feada6f9_data/test_874.csv', 874), ('test_registry_feada6f9_data/test_875.csv', 875), ('test_registry_feada6f9_data/test_876.csv', 876), ('test_registry_feada6f9_data/test_877.csv', 877), ('test_registry_feada6f9_data/test_878.csv', 878), ('test_registry_feada6f9_data/test_879.csv', 879), ('test_registry_feada6f9_data/test_88.csv', 88), ('test_registry_feada6f9_data/test_880.csv', 880), ('test_registry_feada6f9_data/test_881.csv', 881), ('test_registry_feada6f9_data/test_882.csv', 882), ('test_registry_feada6f9_data/test_883.csv', 883), ('test_registry_feada6f9_data/test_884.csv', 884), ('test_registry_feada6f9_data/test_885.csv', 885), ('test_registry_feada6f9_data/test_886.csv', 886), ('test_registry_feada6f9_data/test_887.csv', 887), ('test_registry_feada6f9_data/test_888.csv', 888), ('test_registry_feada6f9_data/test_889.csv', 889), ('test_registry_feada6f9_data/test_89.csv', 89), ('test_registry_feada6f9_data/test_890.csv', 890), ('test_registry_feada6f9_data/test_891.csv', 891), ('test_registry_feada6f9_data/test_892.csv', 892), ('test_registry_feada6f9_data/test_893.csv', 893), ('test_registry_feada6f9_data/test_894.csv', 894), ('test_registry_feada6f9_data/test_895.csv', 895), ('test_registry_feada6f9_data/test_896.csv', 896), ('test_registry_feada6f9_data/test_897.csv', 897), ('test_registry_feada6f9_data/test_898.csv', 898), ('test_registry_feada6f9_data/test_899.csv', 899), ('test_registry_feada6f9_data/test_9.csv', 9), ('test_registry_feada6f9_data/test_90.csv', 90), ('test_registry_feada6f9_data/test_900.csv', 900), ('test_registry_feada6f9_data/test_901.csv', 901), ('test_registry_feada6f9_data/test_902.csv', 902), ('test_registry_feada6f9_data/test_903.csv', 903), ('test_registry_feada6f9_data/test_904.csv', 904), ('test_registry_feada6f9_data/test_905.csv', 905), ('test_registry_feada6f9_data/test_906.csv', 906), ('test_registry_feada6f9_data/test_907.csv', 907), ('test_registry_feada6f9_data/test_908.csv', 908), ('test_registry_feada6f9_data/test_909.csv', 909), ('test_registry_feada6f9_data/test_91.csv', 91), ('test_registry_feada6f9_data/test_910.csv', 910), ('test_registry_feada6f9_data/test_911.csv', 911), ('test_registry_feada6f9_data/test_912.csv', 912), ('test_registry_feada6f9_data/test_913.csv', 913), ('test_registry_feada6f9_data/test_914.csv', 914), ('test_registry_feada6f9_data/test_915.csv', 915), ('test_registry_feada6f9_data/test_916.csv', 916), ('test_registry_feada6f9_data/test_917.csv', 917), ('test_registry_feada6f9_data/test_918.csv', 918), ('test_registry_feada6f9_data/test_919.csv', 919), ('test_registry_feada6f9_data/test_92.csv', 92), ('test_registry_feada6f9_data/test_920.csv', 920), ('test_registry_feada6f9_data/test_921.csv', 921), ('test_registry_feada6f9_data/test_922.csv', 922), ('test_registry_feada6f9_data/test_923.csv', 923), ('test_registry_feada6f9_data/test_924.csv', 924), ('test_registry_feada6f9_data/test_925.csv', 925), ('test_registry_feada6f9_data/test_926.csv', 926), ('test_registry_feada6f9_data/test_927.csv', 927), ('test_registry_feada6f9_data/test_928.csv', 928), ('test_registry_feada6f9_data/test_929.csv', 929), ('test_registry_feada6f9_data/test_93.csv', 93), ('test_registry_feada6f9_data/test_930.csv', 930), ('test_registry_feada6f9_data/test_931.csv', 931), ('test_registry_feada6f9_data/test_932.csv', 932), ('test_registry_feada6f9_data/test_933.csv', 933), ('test_registry_feada6f9_data/test_934.csv', 934), ('test_registry_feada6f9_data/test_935.csv', 935), ('test_registry_feada6f9_data/test_936.csv', 936), ('test_registry_feada6f9_data/test_937.csv', 937), ('test_registry_feada6f9_data/test_938.csv', 938), ('test_registry_feada6f9_data/test_939.csv', 939), ('test_registry_feada6f9_data/test_94.csv', 94), ('test_registry_feada6f9_data/test_940.csv', 940), ('test_registry_feada6f9_data/test_941.csv', 941), ('test_registry_feada6f9_data/test_942.csv', 942), ('test_registry_feada6f9_data/test_943.csv', 943), ('test_registry_feada6f9_data/test_944.csv', 944), ('test_registry_feada6f9_data/test_945.csv', 945), ('test_registry_feada6f9_data/test_946.csv', 946), ('test_registry_feada6f9_data/test_947.csv', 947), ('test_registry_feada6f9_data/test_948.csv', 948), ('test_registry_feada6f9_data/test_949.csv', 949), ('test_registry_feada6f9_data/test_95.csv', 95), ('test_registry_feada6f9_data/test_950.csv', 950), ('test_registry_feada6f9_data/test_951.csv', 951), ('test_registry_feada6f9_data/test_952.csv', 952), ('test_registry_feada6f9_data/test_953.csv', 953), ('test_registry_feada6f9_data/test_954.csv', 954), ('test_registry_feada6f9_data/test_955.csv', 955), ('test_registry_feada6f9_data/test_956.csv', 956), ('test_registry_feada6f9_data/test_957.csv', 957), ('test_registry_feada6f9_data/test_958.csv', 958), ('test_registry_feada6f9_data/test_959.csv', 959), ('test_registry_feada6f9_data/test_96.csv', 96), ('test_registry_feada6f9_data/test_960.csv', 960), ('test_registry_feada6f9_data/test_961.csv', 961), ('test_registry_feada6f9_data/test_962.csv', 962), ('test_registry_feada6f9_data/test_963.csv', 963), ('test_registry_feada6f9_data/test_964.csv', 964), ('test_registry_feada6f9_data/test_965.csv', 965), ('test_registry_feada6f9_data/test_966.csv', 966), ('test_registry_feada6f9_data/test_967.csv', 967), ('test_registry_feada6f9_data/test_968.csv', 968), ('test_registry_feada6f9_data/test_969.csv', 969), ('test_registry_feada6f9_data/test_97.csv', 97), ('test_registry_feada6f9_data/test_970.csv', 970), ('test_registry_feada6f9_data/test_971.csv', 971), ('test_registry_feada6f9_data/test_972.csv', 972), ('test_registry_feada6f9_data/test_973.csv', 973), ('test_registry_feada6f9_data/test_974.csv', 974), ('test_registry_feada6f9_data/test_975.csv', 975), ('test_registry_feada6f9_data/test_976.csv', 976), ('test_registry_feada6f9_data/test_977.csv', 977), ('test_registry_feada6f9_data/test_978.csv', 978), ('test_registry_feada6f9_data/test_979.csv', 979), ('test_registry_feada6f9_data/test_98.csv', 98), ('test_registry_feada6f9_data/test_980.csv', 980), ('test_registry_feada6f9_data/test_981.csv', 981), ('test_registry_feada6f9_data/test_982.csv', 982), ('test_registry_feada6f9_data/test_983.csv', 983), ('test_registry_feada6f9_data/test_984.csv', 984), ('test_registry_feada6f9_data/test_985.csv', 985), ('test_registry_feada6f9_data/test_986.csv', 986), ('test_registry_feada6f9_data/test_987.csv', 987), ('test_registry_feada6f9_data/test_988.csv', 988), ('test_registry_feada6f9_data/test_989.csv', 989), ('test_registry_feada6f9_data/test_99.csv', 99), ('test_registry_feada6f9_data/test_990.csv', 990), ('test_registry_feada6f9_data/test_991.csv', 991), ('test_registry_feada6f9_data/test_992.csv', 992), ('test_registry_feada6f9_data/test_993.csv', 993), ('test_registry_feada6f9_data/test_994.csv', 994), ('test_registry_feada6f9_data/test_995.csv', 995), ('test_registry_feada6f9_data/test_996.csv', 996), ('test_registry_feada6f9_data/test_997.csv', 997), ('test_registry_feada6f9_data/test_998.csv', 998), ('test_registry_feada6f9_data/test_999.csv', 999)] ------------------------------ Captured log call ------------------------------- 2025-07-11 01:23:03 [ 573 ] DEBUG : Executing query DROP DATABASE IF EXISTS db_test_registry_feada6f9 on node1 (cluster.py:3570, query) 2025-07-11 01:23:03 [ 573 ] DEBUG : Executing query DROP DATABASE IF EXISTS db_test_registry_feada6f9 on node2 (cluster.py:3570, query) 2025-07-11 01:23:04 [ 573 ] DEBUG : Executing query CREATE DATABASE db_test_registry_feada6f9 ENGINE=Replicated('/clickhouse/databases/replicateddb2', 'shard1', 'node1') on node1 (cluster.py:3570, query) 2025-07-11 01:23:04 [ 573 ] DEBUG : Executing query CREATE DATABASE db_test_registry_feada6f9 ENGINE=Replicated('/clickhouse/databases/replicateddb2', 'shard1', 'node2') on node2 (cluster.py:3570, query) 2025-07-11 01:23:04 [ 573 ] DEBUG : Executing query DROP TABLE IF EXISTS test_registry_feada6f9 on node1 (cluster.py:3570, query) 2025-07-11 01:23:05 [ 573 ] DEBUG : Executing query CREATE TABLE db_test_registry_feada6f9.test_registry_feada6f9 (column1 UInt32, column2 UInt32, column3 UInt32) ENGINE = S3Queue('http://minio1:9001/root/test_registry_feada6f9_data/', 'minio','ClickHouse_Minio_P@ssw0rd', CSV) SETTINGS s3queue_loading_retries=0,after_processing='keep',keeper_path='/clickhouse/test_test_registry_feada6f9',mode='ordered',enable_hash_ring_filtering=1,buckets=3 on node1 (cluster.py:3570, query) 2025-07-11 01:23:05 [ 573 ] DEBUG : get_instance_ip instance_name=zoo1 (cluster.py:1999, get_instance_ip) 2025-07-11 01:23:05 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/containers/rootteststorages3queue4-gw1-zoo1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:05 [ 573 ] DEBUG : get_kazoo_client: zoo1, ip:172.16.1.2, port:2181, use_ssl:False (cluster.py:3234, get_kazoo_client) 2025-07-11 01:23:05 [ 573 ] INFO : Connecting to 172.16.1.2(172.16.1.2):2181, use_ssl: False (connection.py:650, _connect) 2025-07-11 01:23:05 [ 573 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=30000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2025-07-11 01:23:05 [ 573 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2025-07-11 01:23:05 [ 573 ] DEBUG : Sending request(xid=1): GetData(path='/clickhouse/test_test_registry_feada6f9/registry', watcher=None) (connection.py:312, _submit) 2025-07-11 01:23:05 [ 573 ] DEBUG : Received response(xid=1): (b'0\nnode1\nf9600b92-ee90-4989-af49-76935e0f7e72\n,0\nnode2\nf9600b92-ee90-4989-af49-76935e0f7e72\n', ZnodeStat(czxid=95, mzxid=99, ctime=1752196985368, mtime=1752196985464, version=1, cversion=0, aversion=0, ephemeralOwner=0, dataLength=91, numChildren=0, pzxid=95)) (connection.py:410, _read_response) 2025-07-11 01:23:05 [ 573 ] DEBUG : Executing query SELECT uuid FROM system.tables WHERE database = 'db_test_registry_feada6f9' and table = 'test_registry_feada6f9' on node1 (cluster.py:3570, query) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_0.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_1.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_10.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_100.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_101.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_102.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_103.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_104.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_105.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_106.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_107.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_108.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_109.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_11.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_110.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_111.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_112.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_113.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_114.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_115.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_116.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_117.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_118.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_119.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_12.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_120.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_121.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_122.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_123.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_124.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_125.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_126.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_127.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_128.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_129.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_13.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_130.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_131.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_132.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_133.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_134.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_135.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_136.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_137.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_138.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_139.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_14.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_140.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_141.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_142.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_143.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_144.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_145.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_146.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_147.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_148.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_149.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_15.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_150.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_151.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_152.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_153.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_154.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_155.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_156.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_157.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_158.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_159.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_16.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_160.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_161.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_162.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_163.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_164.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_165.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_166.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_167.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_168.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_169.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_17.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_170.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_171.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_172.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_173.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_174.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_175.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_176.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_177.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_178.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_179.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_18.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_180.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_181.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_182.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_183.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_184.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_185.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_186.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_187.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_188.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_189.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_19.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_190.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_191.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_192.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_193.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_194.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_195.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_196.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_197.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_198.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_199.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_2.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_20.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_200.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_201.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_202.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_203.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_204.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_205.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_206.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_207.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_208.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_209.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_21.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_210.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_211.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_212.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_213.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_214.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_215.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_216.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_217.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_218.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_219.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_22.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_220.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_221.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_222.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_223.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_224.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_225.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_226.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_227.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:06 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_228.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_229.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_23.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_230.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_231.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_232.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_233.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_234.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_235.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_236.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_237.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_238.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_239.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_24.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_240.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_241.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_242.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_243.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_244.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_245.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_246.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_247.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_248.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_249.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_25.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_250.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_251.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_252.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_253.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_254.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_255.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_256.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_257.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_258.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_259.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_26.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_260.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_261.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_262.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_263.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_264.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_265.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_266.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_267.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_268.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_269.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_27.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_270.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_271.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_272.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_273.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_274.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_275.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_276.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_277.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_278.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_279.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_28.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_280.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_281.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_282.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_283.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_284.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_285.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_286.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_287.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_288.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_289.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_29.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_290.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_291.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_292.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_293.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_294.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_295.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_296.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_297.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_298.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_299.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_3.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_30.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_300.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_301.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_302.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_303.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_304.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_305.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_306.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_307.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_308.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_309.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_31.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_310.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_311.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_312.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_313.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_314.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_315.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_316.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_317.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_318.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_319.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_32.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_320.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_321.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_322.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_323.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_324.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_325.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_326.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_327.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_328.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_329.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_33.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_330.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_331.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_332.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_333.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_334.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_335.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_336.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_337.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_338.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_339.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_34.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_340.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_341.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_342.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_343.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_344.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_345.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_346.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_347.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_348.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_349.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_35.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_350.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_351.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_352.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_353.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_354.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_355.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_356.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_357.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_358.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_359.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_36.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_360.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_361.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_362.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_363.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_364.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_365.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_366.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_367.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_368.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:07 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_369.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_37.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_370.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_371.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_372.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_373.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_374.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_375.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_376.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_377.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_378.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_379.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_38.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_380.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_381.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_382.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_383.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_384.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_385.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_386.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_387.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_388.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_389.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_39.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_390.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_391.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_392.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_393.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_394.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_395.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_396.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_397.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_398.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_399.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_4.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_40.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_400.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_401.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_402.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_403.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_404.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_405.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_406.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_407.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_408.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_409.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_41.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_410.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_411.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_412.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_413.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_414.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_415.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_416.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_417.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_418.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_419.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_42.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_420.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_421.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_422.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_423.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_424.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_425.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_426.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_427.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_428.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_429.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_43.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_430.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_431.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_432.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_433.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_434.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_435.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_436.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_437.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_438.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_439.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_44.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_440.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_441.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_442.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_443.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_444.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_445.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_446.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_447.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_448.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_449.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_45.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_450.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_451.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_452.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_453.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_454.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_455.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_456.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_457.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_458.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_459.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_46.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_460.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_461.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_462.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_463.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_464.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_465.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_466.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_467.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_468.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_469.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_47.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_470.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_471.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_472.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_473.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_474.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_475.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_476.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_477.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_478.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_479.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_48.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_480.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_481.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_482.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_483.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_484.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_485.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_486.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_487.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_488.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_489.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_49.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_490.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_491.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_492.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_493.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_494.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_495.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_496.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_497.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_498.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_499.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_5.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_50.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_500.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_501.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_502.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_503.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_504.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_505.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_506.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_507.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_508.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_509.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_51.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_510.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_511.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:08 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_512.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_513.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_514.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_515.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_516.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_517.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_518.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_519.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_52.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_520.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_521.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_522.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_523.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_524.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_525.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_526.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_527.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_528.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_529.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_53.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_530.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_531.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_532.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_533.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_534.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_535.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_536.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_537.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_538.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_539.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_54.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_540.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_541.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_542.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_543.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_544.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_545.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_546.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_547.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_548.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_549.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_55.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_550.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_551.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_552.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_553.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_554.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_555.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_556.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_557.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_558.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_559.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_56.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_560.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_561.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_562.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_563.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_564.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_565.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_566.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_567.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_568.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_569.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_57.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_570.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_571.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_572.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_573.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_574.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_575.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_576.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_577.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_578.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_579.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_58.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_580.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_581.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_582.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_583.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_584.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_585.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_586.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_587.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_588.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_589.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_59.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_590.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_591.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_592.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_593.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_594.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_595.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_596.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_597.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_598.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_599.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_6.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_60.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_600.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_601.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_602.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_603.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_604.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_605.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_606.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_607.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_608.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_609.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_61.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_610.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_611.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_612.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_613.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_614.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_615.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_616.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_617.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_618.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_619.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_62.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_620.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_621.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_622.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_623.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_624.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_625.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_626.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_627.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_628.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_629.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_63.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_630.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_631.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_632.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_633.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_634.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_635.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_636.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:09 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_637.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_638.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_639.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_64.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_640.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_641.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_642.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_643.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_644.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_645.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_646.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_647.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_648.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_649.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_65.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_650.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_651.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_652.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_653.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_654.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_655.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_656.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_657.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_658.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_659.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_66.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_660.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_661.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_662.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_663.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_664.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_665.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_666.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_667.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_668.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_669.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_67.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_670.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_671.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_672.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_673.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_674.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_675.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_676.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_677.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_678.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_679.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_68.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_680.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_681.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_682.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_683.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_684.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_685.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_686.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_687.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_688.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_689.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_69.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_690.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_691.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_692.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_693.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_694.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_695.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_696.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_697.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_698.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_699.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_7.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_70.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_700.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_701.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_702.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_703.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_704.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_705.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_706.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_707.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_708.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_709.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_71.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_710.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_711.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_712.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_713.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_714.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_715.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_716.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_717.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_718.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_719.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_72.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_720.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_721.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_722.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_723.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_724.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_725.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_726.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_727.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_728.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_729.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_73.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_730.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_731.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_732.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_733.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_734.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_735.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_736.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_737.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_738.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_739.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_74.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_740.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_741.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_742.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_743.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_744.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_745.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_746.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_747.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_748.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_749.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_75.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_750.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_751.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_752.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_753.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_754.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_755.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_756.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_757.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_758.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_759.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_76.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:10 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_760.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_761.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_762.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_763.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_764.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_765.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_766.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_767.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_768.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_769.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_77.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_770.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_771.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_772.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_773.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_774.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_775.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_776.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_777.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_778.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_779.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_78.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_780.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_781.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_782.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_783.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_784.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_785.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_786.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_787.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_788.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_789.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_79.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_790.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_791.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_792.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_793.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_794.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_795.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_796.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_797.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_798.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_799.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_8.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_80.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_800.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_801.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_802.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_803.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_804.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_805.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_806.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_807.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_808.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_809.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_81.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_810.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_811.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_812.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_813.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_814.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_815.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_816.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_817.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_818.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_819.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_82.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_820.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_821.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_822.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_823.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_824.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_825.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_826.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_827.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_828.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_829.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_83.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_830.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_831.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_832.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_833.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_834.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_835.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_836.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_837.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_838.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_839.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_84.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_840.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_841.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_842.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_843.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_844.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_845.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_846.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_847.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_848.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_849.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_85.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_850.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_851.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_852.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_853.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_854.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_855.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_856.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_857.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_858.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_859.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_86.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_860.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_861.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_862.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_863.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_864.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_865.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_866.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_867.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_868.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_869.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_87.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_870.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_871.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_872.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_873.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_874.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_875.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_876.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_877.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_878.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_879.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_88.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_880.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_881.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_882.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_883.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_884.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_885.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_886.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_887.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_888.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_889.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_89.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_890.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_891.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_892.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_893.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_894.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_895.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_896.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_897.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_898.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_899.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_9.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_90.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_900.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_901.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_902.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_903.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_904.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_905.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_906.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_907.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_908.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:11 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_909.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_91.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_910.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_911.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_912.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_913.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_914.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_915.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_916.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_917.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_918.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_919.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_92.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_920.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_921.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_922.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_923.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_924.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_925.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_926.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_927.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_928.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_929.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_93.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_930.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_931.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_932.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_933.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_934.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_935.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_936.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_937.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_938.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_939.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_94.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_940.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_941.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_942.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_943.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_944.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_945.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_946.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_947.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_948.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_949.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_95.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_950.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_951.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_952.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_953.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_954.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_955.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_956.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_957.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_958.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_959.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_96.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_960.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_961.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_962.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_963.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_964.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_965.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_966.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_967.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_968.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_969.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_97.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_970.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_971.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_972.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_973.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_974.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_975.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_976.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_977.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_978.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_979.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_98.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_980.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_981.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_982.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_983.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_984.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_985.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_986.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_987.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_988.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_989.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_99.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_990.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_991.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_992.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_993.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_994.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_995.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_996.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_997.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_998.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_registry_feada6f9_data/test_999.csv HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:12 [ 573 ] DEBUG : Executing query DROP TABLE IF EXISTS db_test_registry_feada6f9.test_registry_feada6f9_dst; DROP TABLE IF EXISTS db_test_registry_feada6f9.test_registry_feada6f9_mv; CREATE TABLE db_test_registry_feada6f9.test_registry_feada6f9_dst (column1 UInt32, column2 UInt32, column3 UInt32, _path String) ENGINE = MergeTree() ORDER BY column1; CREATE MATERIALIZED VIEW db_test_registry_feada6f9.test_registry_feada6f9_mv TO db_test_registry_feada6f9.test_registry_feada6f9_dst AS SELECT *, _path FROM db_test_registry_feada6f9.test_registry_feada6f9; on node1 (cluster.py:3570, query) 2025-07-11 01:23:13 [ 573 ] DEBUG : Executing query SELECT count() FROM clusterAllReplicas(cluster, db_test_registry_feada6f9.test_registry_feada6f9_dst) on node1 (cluster.py:3570, query) 2025-07-11 01:23:14 [ 573 ] DEBUG : Executing query SELECT count() FROM clusterAllReplicas(cluster, db_test_registry_feada6f9.test_registry_feada6f9_dst) on node1 (cluster.py:3570, query) 2025-07-11 01:23:15 [ 573 ] DEBUG : Executing query SELECT count() FROM clusterAllReplicas(cluster, db_test_registry_feada6f9.test_registry_feada6f9_dst) on node1 (cluster.py:3570, query) 2025-07-11 01:23:17 [ 573 ] DEBUG : Executing query SELECT count() FROM clusterAllReplicas(cluster, db_test_registry_feada6f9.test_registry_feada6f9_dst) on node1 (cluster.py:3570, query) 2025-07-11 01:23:18 [ 573 ] DEBUG : Executing query SELECT count() FROM clusterAllReplicas(cluster, db_test_registry_feada6f9.test_registry_feada6f9_dst) on node1 (cluster.py:3570, query) 2025-07-11 01:23:20 [ 573 ] DEBUG : Executing query SELECT count() FROM clusterAllReplicas(cluster, db_test_registry_feada6f9.test_registry_feada6f9_dst) on node1 (cluster.py:3570, query) 2025-07-11 01:23:21 [ 573 ] DEBUG : Executing query SELECT count() FROM clusterAllReplicas(cluster, db_test_registry_feada6f9.test_registry_feada6f9_dst) on node1 (cluster.py:3570, query) 2025-07-11 01:23:22 [ 573 ] DEBUG : Executing query SELECT count() FROM clusterAllReplicas(cluster, db_test_registry_feada6f9.test_registry_feada6f9_dst) on node1 (cluster.py:3570, query) 2025-07-11 01:23:24 [ 573 ] DEBUG : Executing query SELECT count() FROM clusterAllReplicas(cluster, db_test_registry_feada6f9.test_registry_feada6f9_dst) on node1 (cluster.py:3570, query) 2025-07-11 01:23:25 [ 573 ] DEBUG : Executing query SELECT count() FROM clusterAllReplicas(cluster, db_test_registry_feada6f9.test_registry_feada6f9_dst) on node1 (cluster.py:3570, query) 2025-07-11 01:23:25 [ 573 ] DEBUG : Executing query SELECT count() FROM clusterAllReplicas(cluster, db_test_registry_feada6f9.test_registry_feada6f9_dst) on node1 (cluster.py:3570, query) 2025-07-11 01:23:26 [ 573 ] DEBUG : Executing query DROP TABLE IF EXISTS test_registry_270f8e8a_2 on node1 (cluster.py:3570, query) 2025-07-11 01:23:26 [ 573 ] DEBUG : Executing query CREATE TABLE db_test_registry_feada6f9.test_registry_270f8e8a_2 (column1 UInt32, column2 UInt32, column3 UInt32) ENGINE = S3Queue('http://minio1:9001/root/test_registry_feada6f9_data/', 'minio','ClickHouse_Minio_P@ssw0rd', CSV) SETTINGS s3queue_loading_retries=0,after_processing='keep',keeper_path='/clickhouse/test_test_registry_feada6f9',mode='ordered',enable_hash_ring_filtering=1,buckets=3 on node1 (cluster.py:3570, query) 2025-07-11 01:23:26 [ 573 ] DEBUG : Sending request(xid=2): GetData(path='/clickhouse/test_test_registry_feada6f9/registry', watcher=None) (connection.py:312, _submit) 2025-07-11 01:23:26 [ 573 ] DEBUG : Received response(xid=2): (b'0\nnode1\nf9600b92-ee90-4989-af49-76935e0f7e72\n,0\nnode2\nf9600b92-ee90-4989-af49-76935e0f7e72\n,0\nnode1\nd47ce93b-eb24-4644-8232-0bf24fb71b67\n,0\nnode2\nd47ce93b-eb24-4644-8232-0bf24fb71b67\n', ZnodeStat(czxid=95, mzxid=5327, ctime=1752196985368, mtime=1752197006647, version=3, cversion=3, aversion=0, ephemeralOwner=0, dataLength=183, numChildren=1, pzxid=136)) (connection.py:410, _read_response) 2025-07-11 01:23:26 [ 573 ] DEBUG : Executing query SELECT uuid FROM system.tables WHERE database = 'db_test_registry_feada6f9' and table = 'test_registry_270f8e8a_2' on node1 (cluster.py:3570, query) 2025-07-11 01:23:27 [ 573 ] DEBUG : run container_id:rootteststorages3queue4-gw1-node1-1 detach:False nothrow:True cmd: ['bash', '-c', 'ps -C clickhouse'] (cluster.py:2045, exec_in_container) 2025-07-11 01:23:27 [ 573 ] DEBUG : Command:[docker exec -u root rootteststorages3queue4-gw1-node1-1 bash -c ps -C clickhouse] (cluster.py:121, run_and_check) 2025-07-11 01:23:27 [ 573 ] DEBUG : Stdout: PID TTY TIME CMD (cluster.py:145, run_and_check) 2025-07-11 01:23:27 [ 573 ] DEBUG : Stdout: 8 ? 00:00:23 clickhouse (cluster.py:145, run_and_check) 2025-07-11 01:23:27 [ 573 ] DEBUG : run container_id:rootteststorages3queue4-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', 'pkill clickhouse'] (cluster.py:2045, exec_in_container) 2025-07-11 01:23:27 [ 573 ] DEBUG : Command:[docker exec -u root rootteststorages3queue4-gw1-node1-1 bash -c pkill clickhouse] (cluster.py:121, run_and_check) 2025-07-11 01:23:27 [ 573 ] DEBUG : run container_id:rootteststorages3queue4-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2045, exec_in_container) 2025-07-11 01:23:27 [ 573 ] DEBUG : Command:[docker exec rootteststorages3queue4-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-11 01:23:27 [ 573 ] DEBUG : Stdout:8 (cluster.py:145, run_and_check) 2025-07-11 01:23:28 [ 573 ] DEBUG : run container_id:rootteststorages3queue4-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2045, exec_in_container) 2025-07-11 01:23:28 [ 573 ] DEBUG : Command:[docker exec rootteststorages3queue4-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-11 01:23:28 [ 573 ] DEBUG : Stdout:8 (cluster.py:145, run_and_check) 2025-07-11 01:23:29 [ 573 ] DEBUG : run container_id:rootteststorages3queue4-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2045, exec_in_container) 2025-07-11 01:23:29 [ 573 ] DEBUG : Command:[docker exec rootteststorages3queue4-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-11 01:23:29 [ 573 ] DEBUG : Stdout:8 (cluster.py:145, run_and_check) 2025-07-11 01:23:30 [ 573 ] DEBUG : run container_id:rootteststorages3queue4-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2045, exec_in_container) 2025-07-11 01:23:30 [ 573 ] DEBUG : Command:[docker exec rootteststorages3queue4-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-11 01:23:30 [ 573 ] DEBUG : Stdout:8 (cluster.py:145, run_and_check) 2025-07-11 01:23:31 [ 573 ] DEBUG : run container_id:rootteststorages3queue4-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2045, exec_in_container) 2025-07-11 01:23:31 [ 573 ] DEBUG : Command:[docker exec rootteststorages3queue4-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-11 01:23:31 [ 573 ] DEBUG : run container_id:rootteststorages3queue4-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2045, exec_in_container) 2025-07-11 01:23:31 [ 573 ] DEBUG : Command:[docker exec rootteststorages3queue4-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-11 01:23:31 [ 573 ] DEBUG : No clickhouse process running. Start new one. (cluster.py:3936, start_clickhouse) 2025-07-11 01:23:31 [ 573 ] DEBUG : http://localhost:None "POST /v1.46/containers/rootteststorages3queue4-gw1-node1-1/exec HTTP/1.1" 201 74 (connectionpool.py:547, _make_request) 2025-07-11 01:23:31 [ 573 ] DEBUG : http://localhost:None "POST /v1.46/exec/bc18b35b5baf511e975ade1f6061c1da4ae6b8bf52fc8e5e465676a5ad75c9da/start HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:31 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/exec/bc18b35b5baf511e975ade1f6061c1da4ae6b8bf52fc8e5e465676a5ad75c9da/json HTTP/1.1" 200 586 (connectionpool.py:547, _make_request) 2025-07-11 01:23:32 [ 573 ] DEBUG : run container_id:rootteststorages3queue4-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2045, exec_in_container) 2025-07-11 01:23:32 [ 573 ] DEBUG : Command:[docker exec rootteststorages3queue4-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-11 01:23:32 [ 573 ] DEBUG : Stdout:809 (cluster.py:145, run_and_check) 2025-07-11 01:23:32 [ 573 ] DEBUG : Clickhouse process running. (cluster.py:3950, start_clickhouse) 2025-07-11 01:23:32 [ 573 ] DEBUG : run container_id:rootteststorages3queue4-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2045, exec_in_container) 2025-07-11 01:23:32 [ 573 ] DEBUG : Command:[docker exec rootteststorages3queue4-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-11 01:23:33 [ 573 ] DEBUG : Stdout:809 (cluster.py:145, run_and_check) 2025-07-11 01:23:33 [ 573 ] DEBUG : Executing query select 20 on node1 (cluster.py:3570, query) 2025-07-11 01:23:33 [ 573 ] DEBUG : Executing query select 20 on node1 (cluster.py:3570, query) 2025-07-11 01:23:34 [ 573 ] DEBUG : Executing query select 20 on node1 (cluster.py:3570, query) 2025-07-11 01:23:34 [ 573 ] DEBUG : run container_id:rootteststorages3queue4-gw1-node2-1 detach:False nothrow:True cmd: ['bash', '-c', 'ps -C clickhouse'] (cluster.py:2045, exec_in_container) 2025-07-11 01:23:34 [ 573 ] DEBUG : Command:[docker exec -u root rootteststorages3queue4-gw1-node2-1 bash -c ps -C clickhouse] (cluster.py:121, run_and_check) 2025-07-11 01:23:34 [ 573 ] DEBUG : Stdout: PID TTY TIME CMD (cluster.py:145, run_and_check) 2025-07-11 01:23:34 [ 573 ] DEBUG : Stdout: 8 ? 00:00:10 clickhouse (cluster.py:145, run_and_check) 2025-07-11 01:23:34 [ 573 ] DEBUG : run container_id:rootteststorages3queue4-gw1-node2-1 detach:False nothrow:False cmd: ['bash', '-c', 'pkill clickhouse'] (cluster.py:2045, exec_in_container) 2025-07-11 01:23:34 [ 573 ] DEBUG : Command:[docker exec -u root rootteststorages3queue4-gw1-node2-1 bash -c pkill clickhouse] (cluster.py:121, run_and_check) 2025-07-11 01:23:35 [ 573 ] DEBUG : run container_id:rootteststorages3queue4-gw1-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2045, exec_in_container) 2025-07-11 01:23:35 [ 573 ] DEBUG : Command:[docker exec rootteststorages3queue4-gw1-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-11 01:23:35 [ 573 ] DEBUG : Stdout:8 (cluster.py:145, run_and_check) 2025-07-11 01:23:36 [ 573 ] DEBUG : run container_id:rootteststorages3queue4-gw1-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2045, exec_in_container) 2025-07-11 01:23:36 [ 573 ] DEBUG : Command:[docker exec rootteststorages3queue4-gw1-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-11 01:23:36 [ 573 ] DEBUG : Stdout:8 (cluster.py:145, run_and_check) 2025-07-11 01:23:37 [ 573 ] DEBUG : run container_id:rootteststorages3queue4-gw1-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2045, exec_in_container) 2025-07-11 01:23:37 [ 573 ] DEBUG : Command:[docker exec rootteststorages3queue4-gw1-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-11 01:23:37 [ 573 ] DEBUG : Stdout:8 (cluster.py:145, run_and_check) 2025-07-11 01:23:38 [ 573 ] DEBUG : run container_id:rootteststorages3queue4-gw1-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2045, exec_in_container) 2025-07-11 01:23:38 [ 573 ] DEBUG : Command:[docker exec rootteststorages3queue4-gw1-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-11 01:23:38 [ 573 ] DEBUG : run container_id:rootteststorages3queue4-gw1-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2045, exec_in_container) 2025-07-11 01:23:38 [ 573 ] DEBUG : Command:[docker exec rootteststorages3queue4-gw1-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-11 01:23:38 [ 573 ] DEBUG : No clickhouse process running. Start new one. (cluster.py:3936, start_clickhouse) 2025-07-11 01:23:38 [ 573 ] DEBUG : http://localhost:None "POST /v1.46/containers/rootteststorages3queue4-gw1-node2-1/exec HTTP/1.1" 201 74 (connectionpool.py:547, _make_request) 2025-07-11 01:23:38 [ 573 ] DEBUG : http://localhost:None "POST /v1.46/exec/f4166458f42cd46bf76ea55da605cff692958063d62621535a12839f43af9c83/start HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:38 [ 573 ] DEBUG : http://localhost:None "GET /v1.46/exec/f4166458f42cd46bf76ea55da605cff692958063d62621535a12839f43af9c83/json HTTP/1.1" 200 586 (connectionpool.py:547, _make_request) 2025-07-11 01:23:39 [ 573 ] DEBUG : run container_id:rootteststorages3queue4-gw1-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2045, exec_in_container) 2025-07-11 01:23:39 [ 573 ] DEBUG : Command:[docker exec rootteststorages3queue4-gw1-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-11 01:23:39 [ 573 ] DEBUG : Stdout:779 (cluster.py:145, run_and_check) 2025-07-11 01:23:39 [ 573 ] DEBUG : Clickhouse process running. (cluster.py:3950, start_clickhouse) 2025-07-11 01:23:39 [ 573 ] DEBUG : run container_id:rootteststorages3queue4-gw1-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2045, exec_in_container) 2025-07-11 01:23:39 [ 573 ] DEBUG : Command:[docker exec rootteststorages3queue4-gw1-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-11 01:23:39 [ 573 ] DEBUG : Stdout:779 (cluster.py:145, run_and_check) 2025-07-11 01:23:39 [ 573 ] DEBUG : Executing query select 20 on node2 (cluster.py:3570, query) 2025-07-11 01:23:40 [ 573 ] DEBUG : Executing query select 20 on node2 (cluster.py:3570, query) 2025-07-11 01:23:41 [ 573 ] DEBUG : Executing query select 20 on node2 (cluster.py:3570, query) 2025-07-11 01:23:41 [ 573 ] DEBUG : Sending request(xid=3): GetData(path='/clickhouse/test_test_registry_feada6f9/registry', watcher=None) (connection.py:312, _submit) 2025-07-11 01:23:41 [ 573 ] DEBUG : Received response(xid=3): (b'0\nnode1\nf9600b92-ee90-4989-af49-76935e0f7e72\n,0\nnode2\nf9600b92-ee90-4989-af49-76935e0f7e72\n,0\nnode1\nd47ce93b-eb24-4644-8232-0bf24fb71b67\n,0\nnode2\nd47ce93b-eb24-4644-8232-0bf24fb71b67\n', ZnodeStat(czxid=95, mzxid=5327, ctime=1752196985368, mtime=1752197006647, version=3, cversion=5, aversion=0, ephemeralOwner=0, dataLength=183, numChildren=1, pzxid=6370)) (connection.py:410, _read_response) 2025-07-11 01:23:41 [ 573 ] DEBUG : Executing query DROP TABLE db_test_registry_feada6f9.test_registry_270f8e8a_2 SYNC on node1 (cluster.py:3570, query) _______________________________ test_replicated ________________________________ [gw1] linux -- Python 3.10.12 /usr/bin/python3 started_cluster = def test_replicated(started_cluster): node1 = started_cluster.instances["node1"] node2 = started_cluster.instances["node2"] table_name = f"test_replicated_{uuid.uuid4().hex[:8]}" mv_name = f"{table_name}_mv" db_name = f"r" dst_table_name = f"{table_name}_dst" keeper_path = f"/clickhouse/test_{table_name}" files_path = f"{table_name}_data" files_to_generate = 1000 > node1.query(f"DROP DATABASE IF EXISTS {db_name}") test_storage_s3_queue/test_4.py:72: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ helpers/cluster.py:3571: in query return self.client.query( helpers/client.py:39: in wrap return func(self, *args, **kwargs) helpers/client.py:79: in query ).get_answer() _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = def get_answer(self): self.process.wait(timeout=DEFAULT_QUERY_TIMEOUT) self.stdout_file.seek(0) self.stderr_file.seek(0) stdout = self.stdout_file.read().decode("utf-8", errors="replace") stderr = self.stderr_file.read().decode("utf-8", errors="replace") if ( self.timer is not None and not self.process_finished_before_timeout and not self.ignore_error ): logging.debug(f"Timed out. Last stdout:{stdout}, stderr:{stderr}") raise QueryTimeoutExceedException("Client timed out!") if ( self.process.returncode != 0 or self.remove_trash_from_stderr(stderr) ) and not self.ignore_error: > raise QueryRuntimeException( "Client failed! Return code: {}, stderr: {}".format( self.process.returncode, stderr ), self.process.returncode, stderr, ) E helpers.client.QueryRuntimeException: Client failed! Return code: 210, stderr: Code: 210. DB::NetException: Connection refused (172.16.1.20:9000). (NETWORK_ERROR) helpers/client.py:248: QueryRuntimeException ------------------------------ Captured log setup ------------------------------ 2025-07-11 01:23:42 [ 573 ] DEBUG : Executing query DROP DATABASE IF EXISTS default; CREATE DATABASE default; on instance (cluster.py:3570, query) 2025-07-11 01:23:42 [ 573 ] DEBUG : Executing query DROP DATABASE IF EXISTS default; CREATE DATABASE default; on instance2 (cluster.py:3570, query) 2025-07-11 01:23:42 [ 573 ] DEBUG : Resetting dropped connection: 172.16.1.8 (connectionpool.py:293, _get_conn) 2025-07-11 01:23:42 [ 573 ] DEBUG : http://172.16.1.8:9001 "GET /root?delimiter=&encoding-type=url&list-type=2&max-keys=1000&prefix= HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:42 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_0.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:42 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_1.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:42 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_10.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:42 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_100.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:42 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_101.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:42 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_102.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:42 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_103.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:42 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_104.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:42 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_105.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:42 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_106.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:42 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_107.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:42 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_108.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:42 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_109.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:42 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_11.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:42 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_110.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_111.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_112.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_113.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_114.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_115.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_116.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_117.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_118.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_119.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_12.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_120.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_121.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_122.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_123.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_124.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_125.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_126.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_127.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_128.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_129.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_13.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_130.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_131.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_132.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_133.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_134.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_135.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_136.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_137.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_138.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_139.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_14.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_140.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_141.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_142.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_143.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_144.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_145.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_146.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_147.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_148.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_149.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_15.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_150.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_151.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_152.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_153.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_154.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_155.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_156.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_157.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_158.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_159.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_16.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_160.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_161.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_162.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_163.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_164.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_165.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_166.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_167.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_168.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_169.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_17.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_170.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_171.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_172.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_173.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_174.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_175.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_176.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_177.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_178.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_179.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_18.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_180.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_181.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_182.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_183.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_184.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_185.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_186.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_187.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_188.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_189.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_19.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_190.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_191.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_192.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_193.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_194.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_195.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_196.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_197.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_198.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_199.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_2.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_20.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_200.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_201.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_202.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_203.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_204.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_205.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_206.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_207.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_208.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_209.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_21.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_210.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_211.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_212.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_213.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_214.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_215.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_216.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_217.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_218.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_219.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_22.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_220.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_221.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_222.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_223.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_224.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_225.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_226.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_227.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_228.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_229.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_23.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_230.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_231.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_232.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_233.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_234.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_235.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_236.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_237.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_238.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_239.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_24.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_240.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_241.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_242.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_243.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_244.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_245.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_246.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_247.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_248.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_249.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_25.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_250.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_251.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_252.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_253.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_254.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_255.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_256.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_257.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_258.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_259.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_26.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_260.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_261.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_262.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_263.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_264.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_265.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_266.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_267.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_268.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_269.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_27.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_270.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_271.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_272.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_273.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_274.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_275.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_276.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_277.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_278.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_279.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_28.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_280.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_281.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_282.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_283.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_284.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_285.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_286.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_287.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_288.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_289.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_29.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_290.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_291.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_292.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_293.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_294.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_295.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_296.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_297.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_298.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_299.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_3.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_30.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_300.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_301.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_302.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_303.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_304.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_305.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_306.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_307.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_308.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_309.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_31.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_310.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_311.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_312.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_313.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_314.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_315.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_316.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_317.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_318.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_319.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_32.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_320.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_321.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_322.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_323.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_324.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_325.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_326.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_327.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_328.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_329.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_33.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_330.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_331.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_332.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_333.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_334.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_335.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_336.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_337.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_338.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_339.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_34.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_340.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_341.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_342.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_343.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_344.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_345.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_346.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_347.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_348.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_349.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_35.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_350.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_351.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_352.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_353.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_354.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_355.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_356.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_357.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_358.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_359.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_36.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_360.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_361.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_362.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_363.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_364.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_365.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_366.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_367.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_368.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_369.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_37.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_370.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_371.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_372.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_373.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_374.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_375.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_376.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_377.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_378.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_379.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_38.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_380.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_381.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_382.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_383.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_384.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_385.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_386.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_387.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_388.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_389.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_39.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_390.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_391.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_392.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_393.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_394.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_395.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_396.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_397.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_398.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_399.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_4.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_40.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_400.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_401.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_402.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_403.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_404.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_405.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_406.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_407.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_408.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_409.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_41.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_410.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_411.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_412.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_413.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_414.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_415.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_416.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_417.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_418.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_419.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_42.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_420.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_421.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_422.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_423.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_424.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:43 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_425.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_426.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_427.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_428.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_429.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_43.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_430.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_431.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_432.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_433.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_434.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_435.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_436.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_437.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_438.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_439.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_44.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_440.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_441.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_442.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_443.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_444.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_445.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_446.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_447.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_448.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_449.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_45.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_450.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_451.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_452.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_453.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_454.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_455.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_456.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_457.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_458.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_459.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_46.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_460.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_461.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_462.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_463.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_464.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_465.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_466.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_467.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_468.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_469.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_47.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_470.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_471.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_472.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_473.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_474.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_475.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_476.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_477.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_478.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_479.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_48.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_480.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_481.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_482.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_483.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_484.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_485.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_486.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_487.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_488.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_489.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_49.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_490.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_491.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_492.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_493.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_494.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_495.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_496.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_497.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_498.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_499.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_5.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_50.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_500.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_501.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_502.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_503.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_504.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_505.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_506.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_507.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_508.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_509.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_51.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_510.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_511.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_512.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_513.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_514.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_515.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_516.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_517.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_518.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_519.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_52.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_520.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_521.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_522.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_523.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_524.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_525.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_526.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_527.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_528.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_529.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_53.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_530.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_531.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_532.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_533.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_534.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_535.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_536.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_537.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_538.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_539.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_54.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_540.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_541.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_542.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_543.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_544.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_545.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_546.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_547.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_548.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_549.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_55.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_550.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_551.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_552.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_553.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_554.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_555.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_556.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_557.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_558.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_559.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_56.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_560.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_561.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_562.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_563.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_564.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_565.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_566.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_567.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_568.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_569.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_57.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_570.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_571.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_572.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_573.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_574.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_575.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_576.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_577.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_578.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_579.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_58.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_580.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_581.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_582.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_583.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_584.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_585.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_586.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_587.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_588.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_589.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_59.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_590.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_591.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_592.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_593.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_594.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_595.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_596.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_597.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_598.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_599.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_6.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_60.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_600.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_601.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_602.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_603.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_604.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_605.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_606.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_607.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_608.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_609.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_61.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_610.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_611.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_612.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_613.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_614.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_615.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_616.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_617.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_618.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_619.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_62.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_620.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_621.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_622.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_623.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_624.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_625.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_626.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_627.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_628.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_629.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_63.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_630.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_631.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_632.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_633.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_634.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_635.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_636.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_637.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_638.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_639.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_64.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_640.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_641.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_642.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_643.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_644.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_645.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_646.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_647.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_648.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_649.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_65.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_650.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_651.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_652.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_653.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_654.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_655.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_656.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_657.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_658.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_659.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_66.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_660.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_661.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_662.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_663.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_664.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_665.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_666.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_667.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_668.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_669.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_67.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_670.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_671.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_672.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_673.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_674.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_675.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_676.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_677.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_678.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_679.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_68.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_680.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_681.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_682.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_683.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_684.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_685.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_686.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_687.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_688.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_689.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_69.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_690.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_691.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_692.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_693.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_694.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_695.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_696.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_697.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_698.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_699.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_7.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_70.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_700.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_701.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_702.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_703.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_704.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_705.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_706.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_707.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_708.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_709.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_71.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_710.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_711.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_712.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_713.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_714.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_715.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_716.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_717.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_718.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_719.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_72.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_720.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_721.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_722.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_723.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_724.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_725.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_726.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_727.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:44 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_728.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_729.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_73.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_730.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_731.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_732.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_733.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_734.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_735.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_736.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_737.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_738.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_739.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_74.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_740.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_741.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_742.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_743.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_744.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_745.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_746.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_747.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_748.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_749.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_75.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_750.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_751.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_752.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_753.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_754.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_755.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_756.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_757.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_758.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_759.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_76.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_760.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_761.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_762.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_763.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_764.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_765.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_766.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_767.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_768.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_769.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_77.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_770.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_771.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_772.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_773.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_774.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_775.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_776.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_777.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_778.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_779.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_78.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_780.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_781.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_782.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_783.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_784.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_785.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_786.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_787.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_788.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_789.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_79.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_790.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_791.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_792.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_793.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_794.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_795.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_796.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_797.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_798.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_799.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_8.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_80.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_800.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_801.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_802.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_803.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_804.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_805.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_806.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_807.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_808.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_809.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_81.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_810.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_811.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_812.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_813.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_814.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_815.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_816.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_817.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_818.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_819.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_82.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_820.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_821.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_822.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_823.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_824.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_825.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_826.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_827.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_828.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_829.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_83.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_830.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_831.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_832.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_833.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_834.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_835.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_836.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_837.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_838.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_839.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_84.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_840.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_841.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_842.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_843.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_844.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_845.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_846.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_847.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_848.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_849.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_85.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_850.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_851.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_852.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_853.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_854.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_855.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_856.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_857.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_858.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_859.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_86.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_860.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_861.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_862.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_863.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_864.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_865.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_866.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_867.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_868.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_869.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_87.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_870.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_871.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_872.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_873.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_874.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_875.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_876.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_877.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_878.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_879.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_88.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_880.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_881.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_882.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_883.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_884.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_885.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_886.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_887.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_888.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_889.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_89.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_890.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_891.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_892.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_893.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_894.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_895.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_896.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_897.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_898.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_899.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_9.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_90.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_900.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_901.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_902.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_903.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_904.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_905.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_906.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_907.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_908.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_909.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_91.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_910.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_911.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_912.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_913.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_914.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_915.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_916.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_917.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_918.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_919.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_92.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_920.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_921.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_922.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_923.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_924.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_925.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_926.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_927.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_928.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_929.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_93.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_930.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_931.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_932.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_933.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_934.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_935.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_936.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_937.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_938.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_939.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_94.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_940.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_941.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_942.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_943.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_944.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_945.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_946.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_947.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_948.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_949.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_95.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_950.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_951.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_952.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_953.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_954.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_955.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_956.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_957.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_958.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_959.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_96.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_960.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_961.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_962.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_963.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_964.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_965.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_966.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_967.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_968.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_969.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_97.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_970.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_971.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_972.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_973.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_974.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_975.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_976.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_977.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_978.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_979.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_98.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_980.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_981.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_982.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_983.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_984.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_985.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_986.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_987.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_988.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_989.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_99.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_990.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_991.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_992.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_993.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_994.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_995.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_996.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_997.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_998.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://172.16.1.8:9001 "DELETE /root/test_registry_feada6f9_data/test_999.csv HTTP/1.1" 204 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] INFO : Request URL: 'http://127.0.0.1:30050/devstoreaccount1/azurite-container?restype=REDACTED' Request method: 'GET' Request headers: 'x-ms-version': 'REDACTED' 'Accept': 'application/xml' 'User-Agent': 'azsdk-python-storage-blob/12.19.0 Python/3.10.12 (Linux-5.15.0-130-generic-x86_64-with-glibc2.35)' 'x-ms-date': 'REDACTED' 'x-ms-client-request-id': 'b09490ee-5df5-11f0-ac96-0242ac110002' 'Authorization': 'REDACTED' No body was attached to the request (_universal.py:514, on_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : Resetting dropped connection: 127.0.0.1 (connectionpool.py:293, _get_conn) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://127.0.0.1:30050 "GET /devstoreaccount1/azurite-container?restype=container HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] INFO : Response status: 200 Response headers: 'Server': 'Azurite-Blob/3.34.0' 'etag': '"0x218B7CB4E1405C0"' 'last-modified': 'Fri, 11 Jul 2025 01:22:59 GMT' 'x-ms-lease-state': 'REDACTED' 'x-ms-lease-status': 'REDACTED' 'x-ms-client-request-id': 'b09490ee-5df5-11f0-ac96-0242ac110002' 'x-ms-request-id': 'e64132db-5ada-4161-8128-542faa7496a9' 'x-ms-version': 'REDACTED' 'x-ms-has-immutability-policy': 'REDACTED' 'x-ms-has-legal-hold': 'REDACTED' 'Date': 'Fri, 11 Jul 2025 01:23:45 GMT' 'Connection': 'keep-alive' 'Keep-Alive': 'REDACTED' 'Content-Length': '0' (_universal.py:550, on_response) 2025-07-11 01:23:45 [ 573 ] INFO : Request URL: 'http://127.0.0.1:30050/devstoreaccount1/azurite-container?restype=REDACTED&comp=REDACTED' Request method: 'GET' Request headers: 'x-ms-version': 'REDACTED' 'Accept': 'application/xml' 'User-Agent': 'azsdk-python-storage-blob/12.19.0 Python/3.10.12 (Linux-5.15.0-130-generic-x86_64-with-glibc2.35)' 'x-ms-date': 'REDACTED' 'x-ms-client-request-id': 'b0968e62-5df5-11f0-ac96-0242ac110002' 'Authorization': 'REDACTED' No body was attached to the request (_universal.py:514, on_request) 2025-07-11 01:23:45 [ 573 ] DEBUG : http://127.0.0.1:30050 "GET /devstoreaccount1/azurite-container?restype=container&comp=list HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-11 01:23:45 [ 573 ] INFO : Response status: 200 Response headers: 'Server': 'Azurite-Blob/3.34.0' 'content-type': 'application/xml' 'x-ms-client-request-id': 'b0968e62-5df5-11f0-ac96-0242ac110002' 'x-ms-request-id': 'c568fefa-f63a-4d07-9604-0fa0ad7d1099' 'x-ms-version': 'REDACTED' 'date': 'Fri, 11 Jul 2025 01:23:45 GMT' 'Connection': 'keep-alive' 'Keep-Alive': 'REDACTED' 'Transfer-Encoding': 'chunked' (_universal.py:550, on_response) 2025-07-11 01:23:45 [ 573 ] DEBUG : Deleting blobs: [] (test_4.py:38, s3_queue_setup_teardown) ------------------------------ Captured log call ------------------------------- 2025-07-11 01:23:45 [ 573 ] DEBUG : Executing query DROP DATABASE IF EXISTS r on node1 (cluster.py:3570, query) ---------------------------- Captured log teardown ----------------------------- 2025-07-11 01:23:46 [ 573 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/.env --project-name rootteststorages3queue4-gw1 --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_azurite.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/old_instance/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node1/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node2/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_too_many_parts/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_24.5/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2_24.5/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance3_24.5/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance4_24.5/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node_cloud_mode/docker-compose.yml stop --timeout 20] (cluster.py:121, run_and_check) 2025-07-11 01:23:55 [ 573 ] WARNING : Connection dropped: outstanding heartbeat ping not received (connection.py:622, _connect_attempt) 2025-07-11 01:23:55 [ 573 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2025-07-11 01:23:55 [ 573 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2025-07-11 01:23:56 [ 573 ] INFO : Connecting to 172.16.1.2(172.16.1.2):2181, use_ssl: False (connection.py:650, _connect) 2025-07-11 01:23:56 [ 573 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-07-11 01:23:56 [ 573 ] INFO : Connecting to 172.16.1.2(172.16.1.2):2181, use_ssl: False (connection.py:650, _connect) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node_cloud_mode-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance3_24.5-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node2-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance2_24.5-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance4_24.5-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance2-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance_24.5-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node1-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-old_instance-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance_too_many_parts-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-resolver-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node1-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance3_24.5-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance2-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-old_instance-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node2-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance2_24.5-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance_too_many_parts-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance4_24.5-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node_cloud_mode-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-minio1-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-azurite1-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance_24.5-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo2-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo3-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo1-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-minio1-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo2-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo3-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo1-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-azurite1-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-resolver-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-proxy2-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-proxy1-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-proxy2-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-proxy1-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/old_instance/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/old_instance/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node1/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node1/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node2/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node2/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_too_many_parts/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_too_many_parts/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_24.5/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_24.5/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2_24.5/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2_24.5/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance3_24.5/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance3_24.5/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance4_24.5/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance4_24.5/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node_cloud_mode/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node_cloud_mode/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2025-07-11 01:24:07 [ 573 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/.env --project-name rootteststorages3queue4-gw1 --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_azurite.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/old_instance/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node1/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node2/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_too_many_parts/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance_24.5/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance2_24.5/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance3_24.5/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/instance4_24.5/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances-4-1-gw1/node_cloud_mode/docker-compose.yml down --volumes] (cluster.py:121, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance2-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance2_24.5-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance4_24.5-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-resolver-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance_24.5-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node_cloud_mode-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance_too_many_parts-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node1-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node2-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance3_24.5-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-old_instance-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-resolver-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-resolver-1 Removing (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance_24.5-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance_24.5-1 Removing (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance-1 Removing (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance4_24.5-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance4_24.5-1 Removing (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance2_24.5-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance2_24.5-1 Removing (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node1-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node1-1 Removing (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-old_instance-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-old_instance-1 Removing (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance2-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance2-1 Removing (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance_too_many_parts-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node_cloud_mode-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node_cloud_mode-1 Removing (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance3_24.5-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance3_24.5-1 Removing (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance_too_many_parts-1 Removing (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node2-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node2-1 Removing (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance_24.5-1 Removed (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance_too_many_parts-1 Removed (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node2-1 Removed (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance3_24.5-1 Removed (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node_cloud_mode-1 Removed (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-old_instance-1 Removed (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance4_24.5-1 Removed (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance2-1 Removed (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-resolver-1 Removed (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance-1 Removed (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-instance2_24.5-1 Removed (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-azurite1-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-minio1-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-node1-1 Removed (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo1-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo2-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo3-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-azurite1-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-azurite1-1 Removing (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-minio1-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-minio1-1 Removing (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo3-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo3-1 Removing (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo2-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo2-1 Removing (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo1-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo1-1 Removing (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo2-1 Removed (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo1-1 Removed (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-azurite1-1 Removed (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-zoo3-1 Removed (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-minio1-1 Removed (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-proxy2-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-proxy1-1 Stopping (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-proxy2-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-proxy2-1 Removing (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-proxy1-1 Stopped (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-proxy1-1 Removing (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-proxy2-1 Removed (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Container rootteststorages3queue4-gw1-proxy1-1 Removed (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Volume rootteststorages3queue4-gw1_data1-1 Removing (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Network rootteststorages3queue4-gw1_default Removing (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Volume rootteststorages3queue4-gw1_data1-1 Removed (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stderr: Network rootteststorages3queue4-gw1_default Removed (cluster.py:147, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Cleanup called (cluster.py:846, cleanup) 2025-07-11 01:24:08 [ 573 ] DEBUG : Docker networks for project rootteststorages3queue4-gw1 are NETWORK ID NAME DRIVER SCOPE (cluster.py:825, print_all_docker_pieces) 2025-07-11 01:24:08 [ 573 ] DEBUG : Docker containers for project rootteststorages3queue4-gw1 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:833, print_all_docker_pieces) 2025-07-11 01:24:08 [ 573 ] DEBUG : Docker volumes for project rootteststorages3queue4-gw1 are DRIVER VOLUME NAME (cluster.py:841, print_all_docker_pieces) 2025-07-11 01:24:08 [ 573 ] DEBUG : Command:[docker container list --all --filter name='^/rootteststorages3queue4-gw1-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:121, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Unstopped containers: {} (cluster.py:860, cleanup) 2025-07-11 01:24:08 [ 573 ] DEBUG : No running containers for project: rootteststorages3queue4-gw1 (cluster.py:874, cleanup) 2025-07-11 01:24:08 [ 573 ] DEBUG : Trying to prune unused networks... (cluster.py:880, cleanup) 2025-07-11 01:24:08 [ 573 ] DEBUG : Trying to prune unused images... (cluster.py:896, cleanup) 2025-07-11 01:24:08 [ 573 ] DEBUG : Command:[docker image prune -f] (cluster.py:121, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:145, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Images pruned (cluster.py:899, cleanup) 2025-07-11 01:24:08 [ 573 ] DEBUG : Trying to prune unused volumes... (cluster.py:905, cleanup) 2025-07-11 01:24:08 [ 573 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:121, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2025-07-11 01:24:08 [ 573 ] DEBUG : Volumes pruned: 1 (cluster.py:910, cleanup) ----------------- generated report log file: parallel3_1.jsonl ----------------- ============================== slowest durations =============================== 93.67s setup test_storage_s3_queue/test_4.py::test_registry 38.52s call test_storage_s3_queue/test_4.py::test_registry 22.21s teardown test_storage_s3_queue/test_4.py::test_replicated 3.79s setup test_storage_s3_queue/test_4.py::test_replicated 0.27s call test_storage_s3_queue/test_4.py::test_replicated 0.00s teardown test_storage_s3_queue/test_4.py::test_registry =========================== short test summary info ============================ FAILED test_storage_s3_queue/test_4.py::test_registry - helpers.client.QueryR... FAILED test_storage_s3_queue/test_4.py::test_replicated - helpers.client.Quer... ======================== 2 failed in 163.89s (0:02:43) ========================= Traceback (most recent call last): File "/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration/./runner", line 492, in subprocess.check_call(cmd, shell=True, bufsize=0) File "/usr/lib/python3.10/subprocess.py", line 369, in check_call raise CalledProcessError(retcode, cmd) subprocess.CalledProcessError: Command 'docker run --rm --name clickhouse_integration_tests_0ab37j --privileged --dns-search='.' --memory=30709026816 --security-opt seccomp=unconfined --cap-add=SYS_PTRACE --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=5ccda723c1fc -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=d862517635bf -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e CLICKHOUSE_USE_OLD_ANALYZER=1 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS="--dist=loadfile -n 10 -rfEps --run-id=1 --color=no --durations=0 --report-log=parallel3_1.jsonl --report-log-exclude-logs-on-passed-tests test_storage_s3_queue/test_4.py::test_registry test_storage_s3_queue/test_4.py::test_replicated -vvv " altinityinfra/integration-tests-runner:ad96270260ff ' returned non-zero exit status 1.